Skip to content

Commit 14ed185

Browse files
authored
chore: upgrade dependencies (#1314)
Upgraded dependencies automatically. Ignored pinned versions, which cause some issues. List of pinned versions near the bottom of this commit comment. $ cargo +nightly upgrade Checking virtual workspace's dependencies name old req compatible latest new req ==== ======= ========== ====== ======= bytemuck 1.23.1 1.23.2 1.23.2 1.23.2 bytemuck_derive 1.10.0 1.10.1 1.10.1 1.10.1 clap 4.5.41 4.5.48 4.5.48 4.5.48 log 0.4.27 0.4.28 0.4.28 0.4.28 thiserror 2.0.12 2.0.16 2.0.16 2.0.16 tempfile 3.20.0 3.23.0 3.23.0 3.23.0 Checking firewood's dependencies Checking firewood-benchmark's dependencies Checking firewood-ffi's dependencies name old req compatible latest new req ==== ======= ========== ====== ======= chrono 0.4.41 0.4.42 0.4.42 0.4.42 Checking firewood-fwdctl's dependencies name old req compatible latest new req ==== ======= ========== ====== ======= anyhow 1.0.98 1.0.100 1.0.100 1.0.100 Checking firewood-macros's dependencies Checking firewood-storage's dependencies name old req compatible latest new req ==== ======= ========== ====== ======= bitfield 0.19.1 0.19.2 0.19.2 0.19.2 bitflags 2.9.1 2.9.4 2.9.4 2.9.4 derive-where 1.5.0 1.6.0 1.6.0 1.6.0 lru 0.16.0 0.16.1 0.16.1 0.16.1 semver 1.0.26 1.0.27 1.0.27 1.0.27 io-uring 0.7.8 0.7.10 0.7.10 0.7.10 log 0.4.27 0.4.28 0.4.28 0.4.28 Checking firewood-triehash's dependencies Upgrading recursive dependencies Locking 1 package to latest compatible version Adding hashbrown v0.16.0 note: pass `--verbose` to see 5 unchanged dependencies behind latest note: Re-run with `--pinned` to upgrade pinned version requirements note: Re-run with `--verbose` to show more dependencies latest: 54 packages pinned: 4 packages $ cargo +nightly upgrade --dry-run --pinned Checking virtual workspace's dependencies Checking firewood's dependencies Checking firewood-benchmark's dependencies name old req compatible latest new req ==== ======= ========== ====== ======= opentelemetry =0.30.0 0.30.0 0.31.0 =0.31.0 opentelemetry-otlp =0.30.0 0.30.0 0.31.0 =0.31.0 opentelemetry-proto =0.30.0 0.30.0 0.31.0 =0.31.0 opentelemetry_sdk =0.30.0 0.30.0 0.31.0 =0.31.0 Checking firewood-ffi's dependencies Checking firewood-fwdctl's dependencies Checking firewood-macros's dependencies Checking firewood-storage's dependencies Checking firewood-triehash's dependencies note: Re-run with `--verbose` to show more dependencies latest: 68 packages warning: aborting upgrade due to dry run
1 parent 4e612d4 commit 14ed185

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,28 @@ firewood-triehash = { path = "triehash", version = "0.0.12" }
6262

6363
# common dependencies
6464
aquamarine = "0.6.0"
65-
bytemuck = "1.23.1"
66-
bytemuck_derive = "1.10.0"
67-
clap = { version = "4.5.41", features = ["derive"] }
65+
bytemuck = "1.23.2"
66+
bytemuck_derive = "1.10.1"
67+
clap = { version = "4.5.48", features = ["derive"] }
6868
coarsetime = "0.1.36"
6969
env_logger = "0.11.8"
7070
fastrace = "0.7.14"
7171
hex = "0.4.3"
7272
integer-encoding = "4.0.2"
73-
log = "0.4.27"
73+
log = "0.4.28"
7474
metrics = "0.24.2"
7575
metrics-util = "0.20.0"
7676
nonzero_ext = "0.3.0"
7777
rand_distr = "0.5.1"
7878
sha2 = "0.10.9"
7979
smallvec = "1.15.1"
8080
test-case = "3.3.1"
81-
thiserror = "2.0.12"
81+
thiserror = "2.0.16"
8282

8383
# common dev dependencies
8484
criterion = "0.7.0"
8585
ethereum-types = "0.15.1"
8686
hex-literal = "1.0.0"
8787
pprof = "0.15.0"
8888
rand = "0.9.2"
89-
tempfile = "3.20.0"
89+
tempfile = "3.23.0"

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ firewood-storage.workspace = true
2727
metrics.workspace = true
2828
metrics-util.workspace = true
2929
# Regular dependencies
30-
chrono = "0.4.41"
30+
chrono = "0.4.42"
3131
oxhttp = "0.3.1"
3232
# Optional dependencies
3333
env_logger = { workspace = true, optional = true }

fwdctl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ logger = ["firewood/logger"]
4646
firewood-storage = { workspace = true, features = ["test_utils"] }
4747
rand.workspace = true
4848
# Regular dependencies
49-
anyhow = "1.0.98"
49+
anyhow = "1.0.100"
5050
assert_cmd = "2.0.17"
5151
predicates = "3.1.3"
5252
serial_test = "3.2.0"

storage/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ smallvec = { workspace = true, features = ["write", "union"] }
3333
thiserror.workspace = true
3434
# Regular dependencies
3535
arc-swap = "1.7.1"
36-
bitfield = "0.19.1"
37-
bitflags = "2.9.1"
38-
derive-where = "1.5.0"
36+
bitfield = "0.19.2"
37+
bitflags = "2.9.4"
38+
derive-where = "1.6.0"
3939
enum-as-inner = "0.6.1"
4040
indicatif = "0.18.0"
41-
lru = "0.16.0"
42-
semver = "1.0.26"
41+
lru = "0.16.1"
42+
semver = "1.0.27"
4343
triomphe = "0.1.14"
4444
# Optional dependencies
4545
bytes = { version = "1.10.1", optional = true }
46-
io-uring = { version = "0.7.8", optional = true }
47-
log = { version = "0.4.27", optional = true }
46+
io-uring = { version = "0.7.10", optional = true }
47+
log = { version = "0.4.28", optional = true }
4848
rlp = { version = "0.6.1", optional = true }
4949
sha3 = { version = "0.10.8", optional = true }
5050

0 commit comments

Comments
 (0)