fix: serialize storage map without prefix (#3016)

This commit is contained in:
Matthias Seitz
2023-06-06 13:41:08 +02:00
committed by GitHub
parent 201366d8f7
commit 45af6dc504
3 changed files with 87 additions and 3 deletions

52
Cargo.lock generated
View File

@ -500,6 +500,17 @@ dependencies = [
"sha2 0.9.9",
]
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"lazy_static",
"memchr",
"regex-automata",
]
[[package]]
name = "bstr"
version = "1.3.0"
@ -847,6 +858,18 @@ dependencies = [
"toml 0.5.11",
]
[[package]]
name = "console"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"windows-sys 0.45.0",
]
[[package]]
name = "const-oid"
version = "0.9.2"
@ -1607,6 +1630,12 @@ dependencies = [
"zeroize",
]
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding_rs"
version = "0.8.32"
@ -2309,7 +2338,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
dependencies = [
"aho-corasick 0.7.20",
"bstr",
"bstr 1.3.0",
"fnv",
"log",
"regex",
@ -5363,6 +5392,7 @@ dependencies = [
"reth-rlp",
"serde",
"serde_json",
"similar-asserts",
"thiserror",
"tokio",
]
@ -6243,6 +6273,26 @@ dependencies = [
"rand_core 0.6.4",
]
[[package]]
name = "similar"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
dependencies = [
"bstr 0.2.17",
"unicode-segmentation",
]
[[package]]
name = "similar-asserts"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbf644ad016b75129f01a34a355dcb8d66a5bc803e417c7a77cc5d5ee9fa0f18"
dependencies = [
"console",
"similar",
]
[[package]]
name = "simple_asn1"
version = "0.6.2"