chore(deps): bump smolstr hex-literal (#3693)

This commit is contained in:
Matthias Seitz
2023-07-10 15:47:29 +02:00
committed by GitHub
parent 7a1a48a8e1
commit ab2dc70368
3 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@@ -5644,7 +5644,7 @@ dependencies = [
"criterion",
"ethereum-types",
"ethnum",
"hex-literal 0.3.4",
"hex-literal 0.4.1",
"pprof",
"reth-rlp",
"reth-rlp-derive",
@@ -6693,9 +6693,9 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "smol_str"
version = "0.1.24"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9"
checksum = "74212e6bbe9a4352329b2f68ba3130c15a3f26fe88ff22dbdc6cdd58fa85e99c"
dependencies = [
"serde",
]

View File

@@ -36,7 +36,7 @@ tokio-stream = { workspace = true }
pin-project = { workspace = true }
tracing = { workspace = true }
snap = "1.0.5"
smol_str = "0.1"
smol_str = "0.2"
async-trait = { workspace = true }
# arbitrary utils

View File

@@ -13,7 +13,7 @@ arrayvec = { version = "0.7", default-features = false }
auto_impl = "1"
bytes.workspace = true
ethnum = { version = "1", default-features = false, optional = true }
smol_str = { version = "0.1", default-features = false, optional = true }
smol_str = { version = "0.2", default-features = false, optional = true }
ethereum-types = { version = "0.14", features = ["codec"], optional = true }
revm-primitives = { workspace = true, features = ["serde"] }
reth-rlp-derive = { path = "./rlp-derive", optional = true }
@@ -27,7 +27,7 @@ reth-rlp = { workspace = true, features = [
"smol_str",
] }
criterion = "0.4.0"
hex-literal = "0.3"
hex-literal = "0.4"
pprof = { version = "0.11", features = ["flamegraph", "frame-pointer", "criterion"] }
[features]