Skip to content

Commit

Permalink
chore: bump some dependenies version (#1475)
Browse files Browse the repository at this point in the history
chore: upgrade some crates
  • Loading branch information
Eason Gao authored Oct 12, 2023
1 parent 3cddf14 commit 6d171a7
Show file tree
Hide file tree
Showing 8 changed files with 333 additions and 215 deletions.
530 changes: 324 additions & 206 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/config-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ stringreader = "0.1"
strum = "0.25"
strum_macros = "0.25"
tentacle-multiaddr = "0.3"
toml = "0.7"
toml = "0.8"

common-crypto = { path = "../../common/crypto" }
protocol = { path = "../../protocol", package = "axon-protocol", default-features = false }
2 changes: 1 addition & 1 deletion common/memory-tracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jemalloc-ctl = { version = "0.5", package = "tikv-jemalloc-ctl" }
libc = "0.2"
log = "0.4"
once_cell = "1.17"
rocksdb = { version = "0.20", package = "ckb-rocksdb" }
rocksdb = { version = "0.21", package = "ckb-rocksdb" }

common-apm = { path = "../apm" }
protocol = { path = "../../protocol", package = "axon-protocol" }
2 changes: 1 addition & 1 deletion core/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"

[dependencies]
parking_lot = "0.12"
rocksdb = { package = "ckb-rocksdb", version = "0.20" }
rocksdb = { version = "0.21", package = "ckb-rocksdb" }

common-apm = { path = "../../common/apm" }
common-apm-derive = { path = "../../common/apm-derive" }
Expand Down
4 changes: 2 additions & 2 deletions core/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ futures = "0.3"
hasher = "0.1"
lazy_static = "1.4"
log = "0.4"
lru = "0.10"
lru = "0.12"
molecule = "0.7"
parking_lot = "0.12"
protocol = { path = "../../protocol", package = "axon-protocol", default-features = false }
ripemd = "0.1"
rlp = "0.5"
rlp-derive = "0.1"
rocksdb = { version = "0.20", package = "ckb-rocksdb" }
rocksdb = { version = "0.21", package = "ckb-rocksdb" }
rug = "1.19"
sha2 = "0.10"
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rlp = "0.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.7"
toml = "0.8"

common-apm = { path = "../../common/apm" }
common-apm-derive = { path = "../../common/apm-derive" }
Expand Down
2 changes: 1 addition & 1 deletion core/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ arc-swap = "1.6"
futures = "0.3"
lazy_static = "1.4"
log = "0.4"
lru = "0.11"
lru = "0.12"
parking_lot = "0.12"

common-apm = { path = "../../common/apm" }
Expand Down
4 changes: 2 additions & 2 deletions protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rlp = "0.5"
rlp-derive = "0.1"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
trie = { package = "cita_trie", version = "5.0" }
zeroize = "1.6.0"

Expand All @@ -46,7 +46,7 @@ common-hasher = { path = "../common/hasher" }
[dev-dependencies]
hex = "0.4"
serde_json = "1.0"
toml = "0.7"
toml = "0.8"

common-merkle = { path = "../common/merkle" }

Expand Down

0 comments on commit 6d171a7

Please sign in to comment.