Skip to content

Commit 13ffa6f

Browse files
committed
fix ci, cleanup dep and remove unused dep
1 parent 8506bad commit 13ffa6f

File tree

8 files changed

+3
-12
lines changed

8 files changed

+3
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,10 @@ rust-version = "1.85.0"
2828
[workspace.dependencies]
2929
aes-gcm = { version = "0.10.3" }
3030
alloy = { version = "1.0", features = ["default", "arbitrary", "k256", "serde", "rlp"] }
31-
alloy-signer = "1.0"
32-
alloy-chains = "0.2"
3331
# derive feature is not exposed via `alloy`, thus has to explicitly declare here
3432
alloy-rlp = { version = "0.3.12", features = ["derive"] }
3533
anyhow = "1.0.89"
36-
arbitrary = "1.4.1"
34+
arbitrary = { version = "1", features = ["derive"] }
3735
arbtest = "0.3.2"
3836
ark-bls12-381 = "0.5"
3937
ark-bn254 = "0.5"

multisig/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ bincode = { workspace = true }
1414
bs58 = { workspace = true }
1515
committable = { workspace = true }
1616
constant_time_eq = { workspace = true }
17-
data-encoding = { workspace = true }
1817
ed25519-compact = { workspace = true }
1918
either = { workspace = true }
2019
rayon = { workspace = true }

sailfish-types/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ edition.workspace = true
66
rust-version.workspace = true
77

88
[dependencies]
9-
arbitrary = { workspace = true, optional = true }
9+
arbitrary = { workspace = true, optional = true, features = ["derive"] }
1010
arrayvec = { workspace = true }
1111
async-trait = { workspace = true }
1212
bincode = { workspace = true }
13-
bytes = { workspace = true }
1413
committable = { workspace = true }
1514
multisig = { path = "../multisig" }
1615
serde = { workspace = true }

timeboost-builder/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ robusta = { path = "../robusta" }
1919
serde = { workspace = true }
2020
smallvec = { workspace = true }
2121
thiserror = { workspace = true }
22-
timeboost-proto = { path = "../timeboost-proto" }
2322
timeboost-types = { path = "../timeboost-types" }
2423
tokio = { workspace = true }
2524
tokio-util = { workspace = true }

timeboost-crypto/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ ark-serialize = { workspace = true }
1616
ark-std = { workspace = true }
1717
bincode = { workspace = true }
1818
bs58 = { workspace = true }
19-
bytes = { workspace = true }
2019
committable = { workspace = true }
2120
derive_more = { workspace = true }
2221
digest = { workspace = true }

timeboost-proto/Cargo.toml

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

88
[dependencies]
99
prost = { workspace = true }
10-
thiserror = { workspace = true }
1110
tonic = { workspace = true }
1211
tonic-prost = { workspace = true }
1312

timeboost-types/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ arbitrary = ["dep:arbitrary", "sailfish-types/arbitrary"]
1212
alloy = { workspace = true }
1313
alloy-rlp = { workspace = true }
1414
anyhow = { workspace = true }
15-
arbitrary = { workspace = true, optional = true }
15+
arbitrary = { workspace = true, optional = true, features = ["derive"] }
1616
ark-ec = { workspace = true }
1717
ark-std = { workspace = true }
1818
arrayvec = { workspace = true }
@@ -29,7 +29,6 @@ sailfish-types = { path = "../sailfish-types" }
2929
serde = { workspace = true }
3030
thiserror = { workspace = true }
3131
timeboost-crypto = { path = "../timeboost-crypto" }
32-
timeboost-proto = { path = "../timeboost-proto" }
3332
tokio = { workspace = true }
3433
tracing = { workspace = true }
3534
url = { workspace = true }

timeboost-utils/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ test = ["committable", "crossbeam-queue", "sailfish-types"]
1010

1111
[dependencies]
1212
alloy = { workspace = true }
13-
alloy-signer = { workspace = true }
1413
anyhow = { workspace = true }
1514
arbitrary = { workspace = true }
1615
ark-std = { workspace = true }

0 commit comments

Comments
 (0)