mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
chore: Add lz4_flex
This commit is contained in:
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -4600,6 +4600,9 @@ name = "lz4_flex"
|
|||||||
version = "0.11.3"
|
version = "0.11.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
||||||
|
dependencies = [
|
||||||
|
"twox-hash",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mach2"
|
name = "mach2"
|
||||||
@ -8725,6 +8728,7 @@ dependencies = [
|
|||||||
"jsonrpsee-types",
|
"jsonrpsee-types",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"libc",
|
"libc",
|
||||||
|
"lz4_flex",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"parity-bytes",
|
"parity-bytes",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
@ -10520,6 +10524,16 @@ dependencies = [
|
|||||||
"utf-8",
|
"utf-8",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "twox-hash"
|
||||||
|
version = "1.6.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"static_assertions",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typenum"
|
name = "typenum"
|
||||||
version = "1.18.0"
|
version = "1.18.0"
|
||||||
|
|||||||
@ -49,7 +49,7 @@ revm = { version = "24.0.1" }
|
|||||||
|
|
||||||
# alloy dependencies
|
# alloy dependencies
|
||||||
alloy-genesis = "1.0.9"
|
alloy-genesis = "1.0.9"
|
||||||
alloy-consensus = "1.0.9"
|
alloy-consensus = { version = "1.0.9", features = ["serde"] }
|
||||||
alloy-chains = "0.2.0"
|
alloy-chains = "0.2.0"
|
||||||
alloy-eips = "1.0.9"
|
alloy-eips = "1.0.9"
|
||||||
alloy-evm = "0.10"
|
alloy-evm = "0.10"
|
||||||
@ -90,6 +90,7 @@ tokio = { version = "1.36", features = ["full"] }
|
|||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
rmp-serde = "1.0.0"
|
rmp-serde = "1.0.0"
|
||||||
|
lz4_flex = "0.11.3"
|
||||||
|
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user