Skip to content

Commit df22ee5

Browse files
cleanup imports
1 parent a4f0443 commit df22ee5

File tree

4 files changed

+37
-94
lines changed

4 files changed

+37
-94
lines changed

Cargo.lock

Lines changed: 22 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ tracing = "0.1.41"
3434
tracing-subscriber = "0.3.19"
3535
governor = "0.6.3"
3636
prometheus-client = "0.22.3"
37-
clap = { version = "4.5.18", features = ["derive"] }
37+
clap = "4.5.18"
38+
tokio = "1.41"
39+
axum = "0.7"
40+
tower = "0.5"
41+
reqwest = "0.12"
42+
tokio-tungstenite = "0.24"
3843

3944
[profile.bench]
4045
# Because we enable overflow checks in "release," we should benchmark with them.

client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ commonware-codec = { workspace = true }
1616
commonware-consensus = { workspace = true }
1717
commonware-cryptography = { workspace = true }
1818
commonware-utils = { workspace = true }
19-
bytes = { workspace = true }
19+
bytes = { workspace = true }
2020
rand = { workspace = true }
2121
thiserror = { workspace = true }
2222
futures = { workspace = true }
23-
reqwest = "0.12.12"
24-
tokio-tungstenite = { version = "0.17", features = ["native-tls"] }
25-
tokio = { version = "1.40.0", features = ["full"] }
23+
reqwest = { workspace = true }
24+
tokio-tungstenite = { workspace = true }
25+
tokio = { workspace = true, features = ["full"] }

simulator/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ thiserror = { workspace = true }
1919
tracing = { workspace = true }
2020
tracing-subscriber = { workspace = true }
2121
clap = { workspace = true, features = ["derive"] }
22-
tokio = { version = "1.41", features = ["full"] }
23-
axum = { version = "0.7", features = ["ws"] }
24-
tower = { version = "0.5" }
25-
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
26-
tokio-tungstenite = { version = "0.24" }
22+
tokio = { workspace = true, features = ["full"] }
23+
axum = { workspace = true, features = ["ws"] }
24+
tower = { workspace = true }
25+
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
26+
tokio-tungstenite = { workspace = true }
2727

2828
[[bin]]
2929
name = "simulator"

0 commit comments

Comments
 (0)