@@ -11,26 +11,27 @@ path = "src/lib.rs"
1111workspace = true
1212
1313[dependencies ]
14- anyhow = " 1"
15- clap = { version = " 4" , features = [" derive" ] }
16- codex-common = { path = " ../common" , features = [" cli" ] }
17- tokio = { version = " 1" , features = [" macros" , " rt-multi-thread" ] }
18- tracing = { version = " 0.1.41" , features = [" log" ] }
19- tracing-subscriber = { version = " 0.3.19" , features = [" env-filter" ] }
14+ anyhow = { workspace = true }
15+ base64 = { workspace = true }
16+ chrono = { workspace = true , features = [" serde" ] }
17+ clap = { workspace = true , features = [" derive" ] }
18+ crossterm = { workspace = true , features = [" event-stream" ] }
19+ ratatui = { workspace = true }
20+ reqwest = { workspace = true , features = [" json" ] }
21+ serde = { workspace = true , features = [" derive" ] }
22+ serde_json = { workspace = true }
23+ throbber-widgets-tui = { workspace = true }
24+ tokio = { workspace = true , features = [" macros" , " rt-multi-thread" ] }
25+ tokio-stream = { workspace = true }
26+ tracing = { workspace = true , features = [" log" ] }
27+ tracing-subscriber = { workspace = true , features = [" env-filter" ] }
28+ unicode-width = { workspace = true }
29+
2030codex-cloud-tasks-client = { path = " ../cloud-tasks-client" , features = [" mock" , " online" ] }
21- ratatui = { version = " 0.29.0" }
22- crossterm = { version = " 0.28.1" , features = [" event-stream" ] }
23- tokio-stream = " 0.1.17"
24- chrono = { version = " 0.4" , features = [" serde" ] }
25- codex-login = { path = " ../login" }
31+ codex-common = { path = " ../common" , features = [" cli" ] }
2632codex-core = { path = " ../core" }
27- throbber-widgets-tui = " 0.8.0"
28- base64 = " 0.22"
29- serde_json = " 1"
30- reqwest = { version = " 0.12" , features = [" json" ] }
31- serde = { version = " 1" , features = [" derive" ] }
32- unicode-width = " 0.1"
33+ codex-login = { path = " ../login" }
3334codex-tui = { path = " ../tui" }
3435
3536[dev-dependencies ]
36- async-trait = " 0.1 "
37+ async-trait = { workspace = true }
0 commit comments