diff --git a/Cargo.lock b/Cargo.lock index 6de7c8be20..a8f894a783 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4653,9 +4653,9 @@ dependencies = [ [[package]] name = "lru" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8015d95cb7b2ddd3c0d32ca38283ceb1eea09b4713ee380bceb942d85a244228" +checksum = "c84e6fe5655adc6ce00787cf7dcaf8dc4f998a0565d23eafc207a8b08ca3349a" dependencies = [ "hashbrown 0.11.2", ] diff --git a/commons/accumulator/Cargo.toml b/commons/accumulator/Cargo.toml index 9d38d07779..e309f6cf5e 100644 --- a/commons/accumulator/Cargo.toml +++ b/commons/accumulator/Cargo.toml @@ -17,7 +17,7 @@ logger = {path = "../../commons/logger", package="starcoin-logger"} starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"} bcs-ext = { package="bcs-ext", path = "../../commons/bcs_ext" } serde = { version = "1.0.130" } -lru = "0.7.6" +lru = "0.7.7" parking_lot = "0.12.0" schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"} diff --git a/network-p2p/Cargo.toml b/network-p2p/Cargo.toml index 0fbeed8ce3..946f62504c 100644 --- a/network-p2p/Cargo.toml +++ b/network-p2p/Cargo.toml @@ -24,7 +24,7 @@ futures-timer = "3.0" linked-hash-map = "0.5.4" linked_hash_set = "0.1.3" log = "0.4.16" -lru = "0.7.6" +lru = "0.7.7" parking_lot = "0.12.0" rand = "0.8.5" pin-project = "0.4.27" diff --git a/network/Cargo.toml b/network/Cargo.toml index 267b75c0ed..a9e40a0dc9 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -31,7 +31,7 @@ bitflags = "1.3.2" tempfile = "3.1.0" rand = "0.8.5" parking_lot = "0.12.0" -lru = "0.7.6" +lru = "0.7.7" serde = { version = "1.0.130", features = ["derive"] } serde_json = { version="1.0", features = ["arbitrary_precision"]} diff --git a/state/statedb/Cargo.toml b/state/statedb/Cargo.toml index c894ab2fe8..8cc33a2eeb 100644 --- a/state/statedb/Cargo.toml +++ b/state/statedb/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" anyhow = "1.0.41" thiserror = "1.0" parking_lot = "0.12.0" -lru = "0.7.6" +lru = "0.7.7" starcoin-types = {path = "../../types"} starcoin-vm-types = {path = "../../vm/types"} starcoin-state-api = {path = "../api"} diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 026fe19263..255c601955 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -15,7 +15,7 @@ crypto = { package = "starcoin-crypto", git = "https://github.com/starcoinorg/st bcs-ext = { package="bcs-ext", path = "../commons/bcs_ext" } chrono = "0.4" byteorder = "1.4.3" -lru = "0.7.6" +lru = "0.7.7" parking_lot = "0.12.0" proptest = { version = "1.0.0", optional = true } proptest-derive = { version = "0.3.0", optional = true }