mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## What changed - Use Ratatui-compatible terminal widths throughout TUI layout, preserving full-width counters for long lines. - Wrap and truncate on grapheme boundaries so halfwidth kana sound marks and emoji sequences stay intact. - Apply the corrected sizing to text input, selection popups, status and history cells, Markdown, hyperlinks, and scrollable cloud diffs. ## Testing - Add focused unit and snapshot coverage for wrapping, truncation, cursor and mask alignment, popup columns, status output, session headers, Markdown tables, process output, and scrollable diffs. GitOrigin-RevId: 294ec0bcff743c6bb16d55ec26308524ce741879
46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "codex-cloud-tasks"
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_cloud_tasks"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
codex-http-client = { workspace = true }
|
|
codex-cloud-tasks-client = { workspace = true }
|
|
# TODO: codex-cloud-tasks-mock-client should be in dev-dependencies.
|
|
codex-cloud-tasks-mock-client = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
codex-git-utils = { workspace = true }
|
|
codex-login = { path = "../login" }
|
|
codex-model-provider = { workspace = true }
|
|
codex-tui = { workspace = true }
|
|
codex-utils-cli = { workspace = true }
|
|
crossterm = { workspace = true, features = ["event-stream"] }
|
|
http = { workspace = true }
|
|
owo-colors = { workspace = true, features = ["supports-colors"] }
|
|
ratatui = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
supports-color = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true, features = ["log"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
unicode-segmentation = { workspace = true }
|
|
unicode-width = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|