cloud-tasks: use workspace deps
This seems to be the way. It made life easier when I was locally forking clap.
This commit is contained in:
@@ -11,10 +11,10 @@ path = "src/lib.rs"
|
|||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = { workspace = true }
|
||||||
base64 = "0.22"
|
base64 = { workspace = true }
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { workspace = true, features = ["serde"] }
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
codex-cloud-tasks-client = { path = "../cloud-tasks-client", features = [
|
codex-cloud-tasks-client = { path = "../cloud-tasks-client", features = [
|
||||||
"mock",
|
"mock",
|
||||||
"online",
|
"online",
|
||||||
@@ -23,16 +23,16 @@ codex-common = { path = "../common", features = ["cli"] }
|
|||||||
codex-core = { path = "../core" }
|
codex-core = { path = "../core" }
|
||||||
codex-login = { path = "../login" }
|
codex-login = { path = "../login" }
|
||||||
codex-tui = { path = "../tui" }
|
codex-tui = { path = "../tui" }
|
||||||
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
crossterm = { workspace = true, features = ["event-stream"] }
|
||||||
ratatui = { version = "0.29.0" }
|
ratatui = { workspace = true }
|
||||||
reqwest = { version = "0.12", features = ["json"] }
|
reqwest = { workspace = true, features = ["json"] }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = { workspace = true }
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||||
tokio-stream = "0.1.17"
|
tokio-stream = { workspace = true }
|
||||||
tracing = { version = "0.1.41", features = ["log"] }
|
tracing = { workspace = true, features = ["log"] }
|
||||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||||
unicode-width = "0.1"
|
unicode-width = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user