@@ -11,10 +11,10 @@ path = "src/lib.rs"
1111workspace = true
1212
1313[dependencies ]
14- anyhow = " 1 "
15- base64 = " 0.22 "
16- chrono = { version = " 0.4 " , features = [" serde" ] }
17- clap = { version = " 4 " , features = [" derive" ] }
14+ anyhow = { workspace = true }
15+ base64 = { workspace = true }
16+ chrono = { workspace = true , features = [" serde" ] }
17+ clap = { workspace = true , features = [" derive" ] }
1818codex-cloud-tasks-client = { path = " ../cloud-tasks-client" , features = [
1919 " mock" ,
2020 " online" ,
@@ -23,16 +23,16 @@ codex-common = { path = "../common", features = ["cli"] }
2323codex-core = { path = " ../core" }
2424codex-login = { path = " ../login" }
2525codex-tui = { path = " ../tui" }
26- crossterm = { version = " 0.28.1 " , features = [" event-stream" ] }
27- ratatui = { version = " 0.29.0 " }
28- reqwest = { version = " 0.12 " , features = [" json" ] }
29- serde = { version = " 1 " , features = [" derive" ] }
30- serde_json = " 1 "
31- tokio = { version = " 1 " , features = [" macros" , " rt-multi-thread" ] }
32- tokio-stream = " 0.1.17 "
33- tracing = { version = " 0.1.41 " , features = [" log" ] }
34- tracing-subscriber = { version = " 0.3.19 " , features = [" env-filter" ] }
35- unicode-width = " 0.1 "
26+ crossterm = { workspace = true , features = [" event-stream" ] }
27+ ratatui = { workspace = true }
28+ reqwest = { workspace = true , features = [" json" ] }
29+ serde = { workspace = true , features = [" derive" ] }
30+ serde_json = { workspace = true }
31+ tokio = { workspace = true , features = [" macros" , " rt-multi-thread" ] }
32+ tokio-stream = { workspace = true }
33+ tracing = { workspace = true , features = [" log" ] }
34+ tracing-subscriber = { workspace = true , features = [" env-filter" ] }
35+ unicode-width = { workspace = true }
3636
3737[dev-dependencies ]
38- async-trait = " 0.1 "
38+ async-trait = { workspace = true }
0 commit comments