mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): move more things to workspace (#4881)
This commit is contained in:
35
Cargo.lock
generated
35
Cargo.lock
generated
@ -5008,7 +5008,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"toml_edit",
|
"toml_edit 0.19.15",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -5469,7 +5469,7 @@ dependencies = [
|
|||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"tokio",
|
"tokio",
|
||||||
"toml 0.7.8",
|
"toml 0.8.1",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tui",
|
"tui",
|
||||||
"vergen",
|
"vergen",
|
||||||
@ -5594,7 +5594,7 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"toml 0.7.8",
|
"toml 0.8.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -6056,7 +6056,7 @@ dependencies = [
|
|||||||
"thiserror",
|
"thiserror",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
"tokio-stream",
|
||||||
"toml 0.7.8",
|
"toml 0.8.1",
|
||||||
"tracing",
|
"tracing",
|
||||||
"triehash",
|
"triehash",
|
||||||
"url",
|
"url",
|
||||||
@ -7812,7 +7812,19 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
"serde_spanned",
|
"serde_spanned",
|
||||||
"toml_datetime",
|
"toml_datetime",
|
||||||
"toml_edit",
|
"toml_edit 0.19.15",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "toml"
|
||||||
|
version = "0.8.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0"
|
||||||
|
dependencies = [
|
||||||
|
"serde",
|
||||||
|
"serde_spanned",
|
||||||
|
"toml_datetime",
|
||||||
|
"toml_edit 0.20.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -7837,6 +7849,19 @@ dependencies = [
|
|||||||
"winnow",
|
"winnow",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "toml_edit"
|
||||||
|
version = "0.20.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe"
|
||||||
|
dependencies = [
|
||||||
|
"indexmap 2.0.2",
|
||||||
|
"serde",
|
||||||
|
"serde_spanned",
|
||||||
|
"toml_datetime",
|
||||||
|
"winnow",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toolchain_find"
|
name = "toolchain_find"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
|||||||
@ -131,6 +131,7 @@ boa_gc = "0.17"
|
|||||||
aquamarine = "0.3"
|
aquamarine = "0.3"
|
||||||
bytes = "1.5"
|
bytes = "1.5"
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
|
clap = "4"
|
||||||
tracing = "0.1.0"
|
tracing = "0.1.0"
|
||||||
tracing-appender = "0.2"
|
tracing-appender = "0.2"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
@ -176,11 +177,12 @@ c-kzg = "0.1.1"
|
|||||||
|
|
||||||
## config
|
## config
|
||||||
confy = "0.5"
|
confy = "0.5"
|
||||||
toml = "0.7"
|
toml = "0.8"
|
||||||
|
|
||||||
### misc-testing
|
### misc-testing
|
||||||
arbitrary = "1.1"
|
arbitrary = "1.1"
|
||||||
assert_matches = "1.5.0"
|
assert_matches = "1.5.0"
|
||||||
|
tempfile = "3.8"
|
||||||
|
|
||||||
proptest = "1.0"
|
proptest = "1.0"
|
||||||
proptest-derive = "0.4"
|
proptest-derive = "0.4"
|
||||||
|
|||||||
@ -94,8 +94,8 @@ hyper = "0.14.25"
|
|||||||
# misc
|
# misc
|
||||||
aquamarine.workspace = true
|
aquamarine.workspace = true
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
tempfile = { version = "3.3.0" }
|
tempfile.workspace = true
|
||||||
backon = "0.4"
|
backon = "0.4"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
pretty_assertions = "1.3.0"
|
pretty_assertions = "1.3.0"
|
||||||
|
|||||||
@ -25,7 +25,7 @@ secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recov
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
confy.workspace = true
|
confy.workspace = true
|
||||||
tempfile = "3.4"
|
tempfile.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
@ -39,7 +39,7 @@ secp256k1 = { workspace = true, default-features = false, features = [
|
|||||||
], optional = true }
|
], optional = true }
|
||||||
modular-bitfield = "0.11.2"
|
modular-bitfield = "0.11.2"
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
clap = { version = "4", features = ["derive"], optional = true }
|
clap = { workspace = true, features = ["derive"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
reth-db = { workspace = true, features = ["test-utils"] }
|
reth-db = { workspace = true, features = ["test-utils"] }
|
||||||
|
|||||||
@ -34,7 +34,7 @@ thiserror.workspace = true
|
|||||||
|
|
||||||
# optional deps for the test-utils feature
|
# optional deps for the test-utils feature
|
||||||
alloy-rlp = { workspace = true, optional = true }
|
alloy-rlp = { workspace = true, optional = true }
|
||||||
tempfile = { version = "3.3", optional = true }
|
tempfile = { workspace = true, optional = true }
|
||||||
itertools = { workspace = true, optional = true }
|
itertools = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
@ -47,7 +47,7 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|||||||
alloy-rlp.workspace = true
|
alloy-rlp.workspace = true
|
||||||
itertools.workspace = true
|
itertools.workspace = true
|
||||||
|
|
||||||
tempfile = "3.3"
|
tempfile.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools"]
|
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools"]
|
||||||
|
|||||||
@ -63,7 +63,7 @@ rand.workspace = true
|
|||||||
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
||||||
|
|
||||||
enr = { workspace = true, features = ["rust-secp256k1"], optional = true }
|
enr = { workspace = true, features = ["rust-secp256k1"], optional = true }
|
||||||
tempfile = { version = "3.3", optional = true }
|
tempfile = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
# reth
|
# reth
|
||||||
@ -88,7 +88,7 @@ enr = { workspace = true, features = ["serde", "rust-secp256k1"] }
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
serial_test.workspace = true
|
serial_test.workspace = true
|
||||||
tempfile = "3.3"
|
tempfile.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["serde"]
|
default = ["serde"]
|
||||||
|
|||||||
@ -49,8 +49,8 @@ url = "2.3"
|
|||||||
once_cell = "1.17.0"
|
once_cell = "1.17.0"
|
||||||
zstd = { version = "0.12", features = ["experimental"] }
|
zstd = { version = "0.12", features = ["experimental"] }
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
rayon = "1.7"
|
rayon.workspace = true
|
||||||
tempfile = "3.3"
|
tempfile.workspace = true
|
||||||
sha2 = "0.10.7"
|
sha2 = "0.10.7"
|
||||||
itertools = "0.11"
|
itertools = "0.11"
|
||||||
num_enum = "0.7"
|
num_enum = "0.7"
|
||||||
@ -74,7 +74,7 @@ arbitrary = { workspace = true, features = ["derive"] }
|
|||||||
proptest.workspace = true
|
proptest.workspace = true
|
||||||
proptest-derive.workspace = true
|
proptest-derive.workspace = true
|
||||||
assert_matches.workspace = true
|
assert_matches.workspace = true
|
||||||
toml = "0.7.4"
|
toml.workspace = true
|
||||||
triehash = "0.8"
|
triehash = "0.8"
|
||||||
|
|
||||||
plain_hasher = "0.2"
|
plain_hasher = "0.2"
|
||||||
|
|||||||
@ -72,5 +72,5 @@ futures.workspace = true
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
jsonrpsee = { workspace = true, features = ["client"] }
|
jsonrpsee = { workspace = true, features = ["client"] }
|
||||||
assert_matches.workspace = true
|
assert_matches.workspace = true
|
||||||
tempfile = "3.5.0"
|
tempfile.workspace = true
|
||||||
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
||||||
|
|||||||
@ -39,7 +39,7 @@ metrics.workspace = true
|
|||||||
bytes.workspace = true
|
bytes.workspace = true
|
||||||
page_size = "0.6.0"
|
page_size = "0.6.0"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tempfile = { version = "3.3.0", optional = true }
|
tempfile = { workspace = true, optional = true }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
derive_more = "0.99"
|
derive_more = "0.99"
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
@ -56,7 +56,7 @@ reth-primitives = { workspace = true, features = ["arbitrary"] }
|
|||||||
reth-codecs = { path = "../codecs", features = ["arbitrary"] }
|
reth-codecs = { path = "../codecs", features = ["arbitrary"] }
|
||||||
reth-interfaces.workspace = true
|
reth-interfaces.workspace = true
|
||||||
|
|
||||||
tempfile = "3.3.0"
|
tempfile.workspace = true
|
||||||
test-fuzz = "4"
|
test-fuzz = "4"
|
||||||
|
|
||||||
pprof = { version = "0.12", features = ["flamegraph", "frame-pointer", "criterion"] }
|
pprof = { version = "0.12", features = ["flamegraph", "frame-pointer", "criterion"] }
|
||||||
|
|||||||
@ -33,7 +33,7 @@ pprof = { version = "0.12", features = ["flamegraph", "frame-pointer", "criterio
|
|||||||
criterion = "0.5"
|
criterion = "0.5"
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
rand_xorshift = "0.3"
|
rand_xorshift = "0.3"
|
||||||
tempfile = "3"
|
tempfile.workspace = true
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "cursor"
|
name = "cursor"
|
||||||
|
|||||||
@ -16,12 +16,12 @@ memmap2 = "0.7.1"
|
|||||||
bloomfilter = "1"
|
bloomfilter = "1"
|
||||||
zstd = { version = "0.12", features = ["experimental", "zdict_builder"] }
|
zstd = { version = "0.12", features = ["experimental", "zdict_builder"] }
|
||||||
ph = "0.8.0"
|
ph = "0.8.0"
|
||||||
thiserror = "1.0"
|
thiserror .workspace = true
|
||||||
bincode = "1.3"
|
bincode = "1.3"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
bytes = "1.5"
|
bytes.workspace = true
|
||||||
cuckoofilter = { version = "0.5.0", features = ["serde_support", "serde_bytes"] }
|
cuckoofilter = { version = "0.5.0", features = ["serde_support", "serde_bytes"] }
|
||||||
tempfile = "3.4"
|
tempfile.workspace = true
|
||||||
sucds = "~0.8"
|
sucds = "~0.8"
|
||||||
|
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|||||||
@ -36,7 +36,7 @@ parking_lot.workspace = true
|
|||||||
alloy-rlp = { workspace = true, optional = true }
|
alloy-rlp = { workspace = true, optional = true }
|
||||||
|
|
||||||
# parallel utils
|
# parallel utils
|
||||||
rayon = "1.7"
|
rayon.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
reth-db = { workspace = true, features = ["test-utils"] }
|
reth-db = { workspace = true, features = ["test-utils"] }
|
||||||
@ -46,7 +46,7 @@ reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|||||||
|
|
||||||
alloy-rlp.workspace = true
|
alloy-rlp.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
tempfile = "3.3"
|
tempfile.workspace = true
|
||||||
assert_matches.workspace = true
|
assert_matches.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@ license.workspace = true
|
|||||||
reth.workspace = true
|
reth.workspace = true
|
||||||
reth-transaction-pool.workspace = true
|
reth-transaction-pool.workspace = true
|
||||||
|
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
jsonrpsee = { workspace = true, features = ["server", "macros"] }
|
jsonrpsee = { workspace = true, features = ["server", "macros"] }
|
||||||
eyre = "0.6"
|
eyre = "0.6"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user