mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
This is the part 1 of 2 PRs that will delete the `tui` / `tui_app_server` split. This part simply deletes the existing `tui` directory and marks the `tui_app_server` feature flag as removed. I left the `tui_app_server` feature flag in place for now so its presence doesn't result in an error. It is simply ignored. Part 2 will rename the `tui_app_server` directory `tui`. I did this as two parts to reduce visible code churn.
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "codex-cloud-tasks"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_cloud_tasks"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
codex-cloud-tasks-client = { path = "../cloud-tasks-client", features = [
|
|
"mock",
|
|
"online",
|
|
] }
|
|
codex-client = { workspace = true }
|
|
codex-core = { path = "../core" }
|
|
codex-git-utils = { workspace = true }
|
|
codex-login = { path = "../login" }
|
|
codex-tui = { workspace = true }
|
|
codex-utils-cli = { workspace = true }
|
|
crossterm = { workspace = true, features = ["event-stream"] }
|
|
ratatui = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { 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-width = { workspace = true }
|
|
owo-colors = { workspace = true, features = ["supports-colors"] }
|
|
supports-color = { workspace = true }
|
|
|
|
[dependencies.async-trait]
|
|
workspace = true
|
|
|
|
[dev-dependencies]
|
|
async-trait = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|