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"
|
name = "reth"
|
||||||
version = "0.1.0-alpha.8"
|
version = "0.1.0-alpha.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"aquamarine",
|
||||||
"backon",
|
"backon",
|
||||||
"boyer-moore-magiclen",
|
"boyer-moore-magiclen",
|
||||||
"clap",
|
"clap",
|
||||||
|
|||||||
@ -112,6 +112,7 @@ ethers-signers = { version = "2.0", default-features = false }
|
|||||||
ethers-middleware = { version = "2.0", default-features = false }
|
ethers-middleware = { version = "2.0", default-features = false }
|
||||||
|
|
||||||
## misc
|
## misc
|
||||||
|
aquamarine = "0.3"
|
||||||
bytes = "1.4"
|
bytes = "1.4"
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
tracing = "0.1.0"
|
tracing = "0.1.0"
|
||||||
|
|||||||
@ -6,6 +6,15 @@ rust-version.workspace = true
|
|||||||
license.workspace = true
|
license.workspace = true
|
||||||
homepage.workspace = true
|
homepage.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
description = """
|
||||||
|
Reth node implementation
|
||||||
|
"""
|
||||||
|
|
||||||
|
[package.metadata.cargo-udeps.ignore]
|
||||||
|
normal = [
|
||||||
|
# Used for diagrams in docs
|
||||||
|
"aquamarine",
|
||||||
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# reth
|
# reth
|
||||||
@ -81,6 +90,7 @@ pin-project.workspace = true
|
|||||||
hyper = "0.14.25"
|
hyper = "0.14.25"
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
|
aquamarine.workspace = true
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
tempfile = { version = "3.3.0" }
|
tempfile = { version = "3.3.0" }
|
||||||
|
|||||||
@ -83,3 +83,6 @@ pub mod rpc {
|
|||||||
|
|
||||||
#[cfg(all(feature = "jemalloc", unix))]
|
#[cfg(all(feature = "jemalloc", unix))]
|
||||||
use jemallocator as _;
|
use jemallocator as _;
|
||||||
|
|
||||||
|
// for rendering diagrams
|
||||||
|
use aquamarine as _;
|
||||||
|
|||||||
@ -31,7 +31,7 @@ reth-metrics = { workspace = true, features = ["common"] }
|
|||||||
metrics.workspace = true
|
metrics.workspace = true
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
aquamarine = "0.3.0"
|
aquamarine.workspace = true
|
||||||
linked_hash_set = "0.1.4"
|
linked_hash_set = "0.1.4"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@ -51,7 +51,7 @@ metrics.workspace = true
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
auto_impl = "1"
|
auto_impl = "1"
|
||||||
aquamarine = "0.3.0"
|
aquamarine.workspace = true
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
|||||||
@ -42,7 +42,7 @@ metrics.workspace = true
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
aquamarine = "0.3.0"
|
aquamarine.workspace = true
|
||||||
itertools.workspace = true
|
itertools.workspace = true
|
||||||
rayon.workspace = true
|
rayon.workspace = true
|
||||||
num-traits = "0.2.15"
|
num-traits = "0.2.15"
|
||||||
|
|||||||
@ -36,7 +36,7 @@ reth-metrics.workspace = true
|
|||||||
metrics.workspace = true
|
metrics.workspace = true
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
aquamarine = "0.3.0"
|
aquamarine.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user