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

View File

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

View File

@ -83,3 +83,6 @@ pub mod rpc {
#[cfg(all(feature = "jemalloc", unix))]
use jemallocator as _;
// for rendering diagrams
use aquamarine as _;