docs: add aquamarine as dep to reth (#4433)

This commit is contained in:
Matthias Seitz
2023-08-31 12:09:27 -07:00
committed by GitHub
parent b839e394a4
commit 1a40daef8a
8 changed files with 19 additions and 4 deletions

1
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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" }

View File

@ -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 _;

View File

@ -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]

View File

@ -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

View File

@ -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"

View File

@ -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 }