2026-03-08 18:43:55 -06:00
|
|
|
[package]
|
|
|
|
|
name = "codex-app-server-client"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "codex_app_server_client"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
codex-app-server = { workspace = true }
|
|
|
|
|
codex-app-server-protocol = { workspace = true }
|
|
|
|
|
codex-arg0 = { workspace = true }
|
|
|
|
|
codex-core = { workspace = true }
|
2026-03-19 20:12:07 -07:00
|
|
|
codex-features = { workspace = true }
|
2026-03-08 18:43:55 -06:00
|
|
|
codex-feedback = { workspace = true }
|
|
|
|
|
codex-protocol = { workspace = true }
|
2026-03-16 10:49:19 -06:00
|
|
|
futures = { workspace = true }
|
2026-03-08 18:43:55 -06:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["sync", "time", "rt"] }
|
2026-03-16 10:49:19 -06:00
|
|
|
tokio-tungstenite = { workspace = true }
|
2026-03-08 18:43:55 -06:00
|
|
|
toml = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2026-03-16 10:49:19 -06:00
|
|
|
url = { workspace = true }
|
2026-03-08 18:43:55 -06:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|