Skip to content

Commit 6cad42f

Browse files
committed
Update some dependencies.
1 parent 1a111e1 commit 6cad42f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ rust-version = "1.85.0"
2929
aes-gcm = { version = "0.10.3" }
3030
alloy = { version = "1.0", features = ["default", "arbitrary", "k256", "serde", "rlp"] }
3131
alloy-chains = "0.2"
32-
# derive feature is not exposed via `alloy`, thus has to explicitly declare here
3332
alloy-rlp = { version = "0.3.12", features = ["derive"] }
3433
anyhow = "1.0.89"
3534
arbitrary = "1.4.1"
@@ -65,13 +64,13 @@ ed25519-compact = "2.1.1"
6564
either = "1.13.0"
6665
ethereum_ssz = "0.9.0"
6766
futures = { version = "0.3", default-features = false, features = ["alloc"] }
68-
generic-array = { version = "0.14.7", features = ["serde", "zeroize"] }
67+
generic-array = { version = "1.2.0", features = ["serde", "zeroize"] }
6968
multiaddr = "0.18.2"
7069
nohash-hasher = "0.2"
7170
parking_lot = "0.12.3"
7271
portpicker = "0.1.1"
7372
prometheus = "0.14"
74-
prost = "0.13.5"
73+
prost = "0.14.1"
7574
quickcheck = "1.0.3"
7675
rand = "0.9"
7776
rayon = "1.10"
@@ -95,8 +94,9 @@ tokio-stream = "0.1.17"
9594
tokio-tungstenite = { version = "0.27.0", features = ["rustls-tls-webpki-roots", "url"] }
9695
tokio-util = "0.7.15"
9796
toml = "0.8.19"
98-
tonic = "0.13.1"
99-
tonic-build = { version = "0.13.1", features = ["prost"] }
97+
tonic = "0.14.1"
98+
tonic-prost = "0.14.1"
99+
tonic-prost-build = "0.14.1"
100100
tracing = "0.1"
101101
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
102102
turmoil = "0.6.4"

timeboost-proto/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ rust-version.workspace = true
99
prost = { workspace = true }
1010
thiserror = { workspace = true }
1111
tonic = { workspace = true }
12+
tonic-prost = { workspace = true }
1213

1314
[build-dependencies]
14-
tonic-build = { workspace = true }
15+
tonic-prost-build = { workspace = true }

timeboost-proto/build.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
use std::error::Error;
22

33
fn main() -> Result<(), Box<dyn Error>> {
4-
tonic_build::configure()
4+
tonic_prost_build::configure()
55
.build_server(true)
66
.out_dir("src")
7-
.bytes([".block.Block.payload", ".inclusion.Transaction.encoded_txn"])
7+
.bytes(".block.Block.payload")
8+
.bytes(".inclusion.Transaction.encoded_txn")
89
.compile_protos(
910
&[
1011
"protos/inclusion_list.proto",

0 commit comments

Comments
 (0)