mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
docs: add aquamarine as dep to reth (#4433)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -5172,6 +5172,7 @@ dependencies = [
|
||||
name = "reth"
|
||||
version = "0.1.0-alpha.8"
|
||||
dependencies = [
|
||||
"aquamarine",
|
||||
"backon",
|
||||
"boyer-moore-magiclen",
|
||||
"clap",
|
||||
|
||||
@ -112,6 +112,7 @@ ethers-signers = { version = "2.0", default-features = false }
|
||||
ethers-middleware = { version = "2.0", default-features = false }
|
||||
|
||||
## misc
|
||||
aquamarine = "0.3"
|
||||
bytes = "1.4"
|
||||
bitflags = "2.3"
|
||||
tracing = "0.1.0"
|
||||
|
||||
@ -6,6 +6,15 @@ rust-version.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
description = """
|
||||
Reth node implementation
|
||||
"""
|
||||
|
||||
[package.metadata.cargo-udeps.ignore]
|
||||
normal = [
|
||||
# Used for diagrams in docs
|
||||
"aquamarine",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
# reth
|
||||
@ -81,6 +90,7 @@ pin-project.workspace = true
|
||||
hyper = "0.14.25"
|
||||
|
||||
# misc
|
||||
aquamarine.workspace = true
|
||||
eyre = "0.6.8"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tempfile = { version = "3.3.0" }
|
||||
|
||||
@ -83,3 +83,6 @@ pub mod rpc {
|
||||
|
||||
#[cfg(all(feature = "jemalloc", unix))]
|
||||
use jemallocator as _;
|
||||
|
||||
// for rendering diagrams
|
||||
use aquamarine as _;
|
||||
|
||||
@ -31,7 +31,7 @@ reth-metrics = { workspace = true, features = ["common"] }
|
||||
metrics.workspace = true
|
||||
|
||||
# misc
|
||||
aquamarine = "0.3.0"
|
||||
aquamarine.workspace = true
|
||||
linked_hash_set = "0.1.4"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@ -51,7 +51,7 @@ metrics.workspace = true
|
||||
|
||||
# misc
|
||||
auto_impl = "1"
|
||||
aquamarine = "0.3.0"
|
||||
aquamarine.workspace = true
|
||||
tracing.workspace = true
|
||||
fnv = "1.0"
|
||||
thiserror.workspace = true
|
||||
|
||||
@ -42,7 +42,7 @@ metrics.workspace = true
|
||||
|
||||
# misc
|
||||
thiserror.workspace = true
|
||||
aquamarine = "0.3.0"
|
||||
aquamarine.workspace = true
|
||||
itertools.workspace = true
|
||||
rayon.workspace = true
|
||||
num-traits = "0.2.15"
|
||||
|
||||
@ -36,7 +36,7 @@ reth-metrics.workspace = true
|
||||
metrics.workspace = true
|
||||
|
||||
# misc
|
||||
aquamarine = "0.3.0"
|
||||
aquamarine.workspace = true
|
||||
thiserror.workspace = true
|
||||
tracing.workspace = true
|
||||
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
||||
|
||||
Reference in New Issue
Block a user