Skip to content

Commit 2f7da18

Browse files
committed
cloud-tasks: use workspace deps
This seems to be the way. It made life easier when I was locally forking clap.
1 parent de8d772 commit 2f7da18

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

codex-rs/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ sys-locale = "0.3.2"
161161
tempfile = "3.23.0"
162162
textwrap = "0.16.2"
163163
thiserror = "2.0.16"
164+
throbber-widgets-tui = "0.8.0"
164165
time = "0.3"
165166
tiny_http = "0.12"
166167
tokio = "1"

codex-rs/cloud-tasks/Cargo.toml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,27 @@ path = "src/lib.rs"
1111
workspace = 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+
2030
codex-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"] }
2632
codex-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" }
3334
codex-tui = { path = "../tui" }
3435

3536
[dev-dependencies]
36-
async-trait = "0.1"
37+
async-trait = { workspace = true }

0 commit comments

Comments
 (0)