chore: unify cargo versions (#4044)

Unify cargo versions at root
This commit is contained in:
jif-oai
2025-09-22 18:47:01 +02:00
committed by GitHub
parent 14a115d488
commit e5fe50d3ce
25 changed files with 437 additions and 344 deletions

View File

@@ -11,20 +11,20 @@ path = "src/lib.rs"
workspace = true
[dependencies]
async-stream = "0.3"
bytes = "1.10.1"
codex-core = { path = "../core" }
futures = "0.3"
reqwest = { version = "0.12", features = ["json", "stream"] }
serde_json = "1"
tokio = { version = "1", features = [
async-stream = { workspace = true }
bytes = { workspace = true }
codex-core = { workspace = true }
futures = { workspace = true }
reqwest = { workspace = true, features = ["json", "stream"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = [
"io-std",
"macros",
"process",
"rt-multi-thread",
"signal",
] }
tracing = { version = "0.1.41", features = ["log"] }
wiremock = "0.6"
tracing = { workspace = true, features = ["log"] }
wiremock = { workspace = true }
[dev-dependencies]