@@ -11,10 +11,10 @@ path = "src/lib.rs"
11
11
workspace = true
12
12
13
13
[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" ] }
18
18
codex-cloud-tasks-client = { path = " ../cloud-tasks-client" , features = [
19
19
" mock" ,
20
20
" online" ,
@@ -23,16 +23,16 @@ codex-common = { path = "../common", features = ["cli"] }
23
23
codex-core = { path = " ../core" }
24
24
codex-login = { path = " ../login" }
25
25
codex-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 }
36
36
37
37
[dev-dependencies ]
38
- async-trait = " 0.1 "
38
+ async-trait = { workspace = true }
0 commit comments