Skip to content

Commit 14fb7ff

Browse files
committed
Remove unused dependencies.
1 parent 1e0dafc commit 14fb7ff

File tree

13 files changed

+0
-63
lines changed

13 files changed

+0
-63
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,12 @@ rust-version = "1.85.0"
3131

3232
[workspace.dependencies]
3333
aes-gcm = { version = "0.10.3" }
34-
alloy-chains = "0.2"
3534
# derive feature is not exposed via `alloy`, thus has to explicitly declare here
3635
alloy-rlp = { version = "0.3.12", features = ["derive"] }
3736
anyhow = "1.0.89"
3837
arbitrary = { version = "1", features = ["derive"] }
3938
arbtest = "0.3.2"
4039
ark-bls12-381 = "0.5"
41-
ark-bn254 = "0.5"
4240
ark-ec = "0.5"
4341
ark-ff = "0.5"
4442
ark-poly = "0.5"
@@ -99,7 +97,6 @@ tokio-stream = "0.1.17"
9997
tokio-tungstenite = { version = "0.27.0", features = ["rustls-tls-webpki-roots", "url"] }
10098
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
10199
toml = "0.9"
102-
toml_edit = "0.22"
103100
tonic = "0.14.1"
104101
tonic-prost = "0.14.1"
105102
tonic-prost-build = "0.14.1"
@@ -113,7 +110,6 @@ zeroize = { version = "1.8", features = ["zeroize_derive"] }
113110

114111
espresso-types = { git = "https://github.com/EspressoSystems/espresso-network.git" }
115112
hotshot-query-service = { git = "https://github.com/EspressoSystems/espresso-network.git" }
116-
hotshot-types = { git = "https://github.com/EspressoSystems/espresso-network.git" }
117113

118114
[workspace.dependencies.alloy]
119115
version = "1.0"

robusta/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ either = { workspace = true }
1313
espresso-types = { workspace = true }
1414
futures = { workspace = true }
1515
hotshot-query-service = { workspace = true }
16-
hotshot-types = { workspace = true }
1716
minicbor = { workspace = true }
1817
multisig = { path = "../multisig" }
1918
reqwest = { workspace = true }

sailfish/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ test = ["sailfish-consensus/test"]
1010

1111
[dependencies]
1212
arrayvec = { workspace = true }
13-
cliquenet = { path = "../cliquenet" }
1413
committable = { workspace = true }
1514
futures = { workspace = true }
1615
multisig = { path = "../multisig" }
@@ -19,7 +18,3 @@ sailfish-rbc = { path = "../sailfish-rbc" }
1918
sailfish-types = { path = "../sailfish-types" }
2019
tokio = { workspace = true }
2120

22-
[dev-dependencies]
23-
criterion = { workspace = true }
24-
rayon = { workspace = true }
25-

timeboost-builder/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,20 @@ rust-version.workspace = true
77

88
[dependencies]
99
adapters = { path = "../adapters" }
10-
bincode = { workspace = true }
1110
bon = { workspace = true }
1211
bytes = { workspace = true }
1312
cliquenet = { path = "../cliquenet" }
1413
committable = { workspace = true }
15-
futures = { workspace = true }
1614
metrics = { path = "../metrics" }
1715
minicbor = { workspace = true }
1816
multisig = { path = "../multisig" }
1917
parking_lot = { workspace = true }
2018
rand = { workspace = true }
2119
robusta = { path = "../robusta" }
22-
serde = { workspace = true }
2320
smallvec = { workspace = true }
2421
thiserror = { workspace = true }
2522
timeboost-config = { path = "../timeboost-config" }
2623
timeboost-types = { path = "../timeboost-types" }
2724
tokio = { workspace = true }
28-
tokio-util = { workspace = true }
2925
tracing = { workspace = true }
3026

31-
[dev-dependencies]
32-
tracing-subscriber = { workspace = true }

timeboost-config/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ thiserror = { workspace = true }
2020
timeboost-crypto = { path = "../timeboost-crypto" }
2121
tokio = { workspace = true }
2222
toml = { workspace = true }
23-
tracing = { workspace = true }
2423
url = { workspace = true }
2524

2625
[[bin]]

timeboost-contract/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ path = "src/binaries/register.rs"
1616
[dependencies]
1717
alloy = { workspace = true }
1818
anyhow = { workspace = true }
19-
bincode = { workspace = true }
2019
clap = { workspace = true }
2120
futures = { workspace = true }
2221
rand = { workspace = true }

timeboost-crypto/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ ark-serialize = { workspace = true }
1919
ark-std = { workspace = true }
2020
bincode = { workspace = true }
2121
bs58 = { workspace = true }
22-
committable = { workspace = true }
2322
derive_more = { workspace = true }
2423
digest = { workspace = true }
2524
generic-array = { workspace = true }
@@ -33,11 +32,9 @@ serde_with = { workspace = true }
3332
sha2 = { workspace = true }
3433
spongefish = { workspace = true }
3534
thiserror = { workspace = true }
36-
tokio = { workspace = true }
3735
zeroize = { workspace = true }
3836

3937
[dev-dependencies]
40-
ark-bn254 = { workspace = true }
4138
ark-secp256k1 = { workspace = true }
4239
criterion = { workspace = true }
4340
serde_json = { workspace = true }

timeboost-sequencer/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ rust-version.workspace = true
88
[dependencies]
99
alloy = { workspace = true }
1010
ark-std = { workspace = true }
11-
arrayvec = { workspace = true }
12-
bimap = { workspace = true }
1311
bincode = { workspace = true }
1412
blake3 = { workspace = true }
1513
bon = { workspace = true }
@@ -31,7 +29,6 @@ tracing = { workspace = true }
3129

3230
[dev-dependencies]
3331
ark-std = { workspace = true }
34-
bs58 = { workspace = true }
3532
futures = { workspace = true }
3633
test-utils = { path = "../test-utils", features = ["ports"] }
3734
timeboost-utils = { path = "../timeboost-utils" }

timeboost-types/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ arbitrary = { workspace = true, optional = true, features = ["derive"] }
1717
ark-ec = { workspace = true }
1818
ark-std = { workspace = true }
1919
arrayvec = { workspace = true }
20-
async-trait = { workspace = true }
2120
bincode = { workspace = true }
2221
blake3 = { workspace = true }
23-
bon = { workspace = true }
2422
bytes = { workspace = true }
2523
committable = { workspace = true }
2624
ethereum_ssz = { workspace = true }
@@ -33,8 +31,6 @@ serde = { workspace = true }
3331
thiserror = { workspace = true }
3432
timeboost-crypto = { path = "../timeboost-crypto" }
3533
tokio = { workspace = true }
36-
tracing = { workspace = true }
37-
url = { workspace = true }
3834

3935
[dev-dependencies]
4036
quickcheck = "1"

0 commit comments

Comments
 (0)