chore(meta): manifest maintenance (#5353)

This commit is contained in:
DaniPopes
2023-11-08 20:53:50 +01:00
committed by GitHub
parent c2a33191aa
commit e897764ad4
36 changed files with 247 additions and 246 deletions

View File

@ -6,9 +6,7 @@ rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = """
Types shared across network code
"""
description = "Types shared across network code"
[dependencies]
# reth

View File

@ -6,15 +6,13 @@ rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = """
Ethereum network discovery
"""
description = "Ethereum network discovery"
[dependencies]
# reth
reth-primitives.workspace = true
reth-net-common = { path = "../common" }
reth-net-nat = { path = "../nat" }
reth-net-common.workspace = true
reth-net-nat.workspace = true
# ethereum
alloy-rlp = { workspace = true, features = ["derive"] }

View File

@ -11,7 +11,7 @@ description = "Support for EIP-1459 Node Discovery via DNS"
[dependencies]
# reth
reth-primitives.workspace = true
reth-net-common = { path = "../common" }
reth-net-common.workspace = true
# ethereum
alloy-rlp.workspace = true

View File

@ -9,7 +9,7 @@ repository.workspace = true
[dependencies]
reth-primitives.workspace = true
reth-net-common = { path = "../common" }
reth-net-common.workspace = true
alloy-rlp = { workspace = true, features = ["derive"] }
futures.workspace = true

View File

@ -10,11 +10,11 @@ repository.workspace = true
[dependencies]
# reth
reth-codecs = { path = "../../storage/codecs" }
reth-codecs.workspace = true
reth-primitives.workspace = true
reth-ecies = { path = "../ecies" }
reth-ecies.workspace = true
alloy-rlp = { workspace = true, features = ["derive"] }
reth-discv4 = { path = "../discv4" }
reth-discv4.workspace = true
# metrics
reth-metrics.workspace = true

View File

@ -6,9 +6,7 @@ rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = """
Helpers for working around NAT
"""
description = "Helpers for working around NAT"
[dependencies]

View File

@ -11,9 +11,9 @@ description = "Network interfaces"
[dependencies]
# reth
reth-primitives.workspace = true
reth-eth-wire = { path = "../eth-wire" }
reth-eth-wire.workspace = true
reth-rpc-types.workspace = true
reth-discv4 = { path = "../discv4" }
reth-discv4.workspace = true
# io
serde = { workspace = true, features = ["derive"], optional = true }

View File

@ -6,9 +6,7 @@ rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = """
Ethereum network support
"""
description = "Ethereum network support"
[package.metadata.cargo-udeps.ignore]
normal = [
@ -20,12 +18,12 @@ normal = [
# reth
reth-interfaces.workspace = true
reth-primitives.workspace = true
reth-net-common = { path = "../common" }
reth-net-common.workspace = true
reth-network-api.workspace = true
reth-discv4 = { path = "../discv4" }
reth-dns-discovery = { path = "../dns" }
reth-eth-wire = { path = "../eth-wire" }
reth-ecies = { path = "../ecies" }
reth-discv4.workspace = true
reth-dns-discovery.workspace = true
reth-eth-wire.workspace = true
reth-ecies.workspace = true
reth-tasks.workspace = true
reth-transaction-pool.workspace = true
reth-provider.workspace = true
@ -68,13 +66,13 @@ tempfile = { workspace = true, optional = true }
[dev-dependencies]
# reth
reth-discv4 = { path = "../discv4", features = ["test-utils"] }
reth-discv4 = { workspace = true, features = ["test-utils"] }
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-primitives = { workspace = true, features = ["test-utils"] }
# we need to enable the test-utils feature in our own crate to use utils in
# integration tests
reth-network = { path = ".", features = ["test-utils"] }
reth-network = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
@ -96,4 +94,10 @@ default = ["serde"]
serde = ["dep:serde", "dep:humantime-serde", "secp256k1/serde", "enr?/serde", "dep:serde_json"]
test-utils = ["reth-provider/test-utils", "dep:enr", "dep:tempfile"]
geth-tests = []
optimism = ["reth-primitives/optimism", "reth-transaction-pool/optimism", "reth-provider/optimism", "reth-network-api/optimism", "reth-rpc-types/optimism"]
optimism = [
"reth-primitives/optimism",
"reth-transaction-pool/optimism",
"reth-provider/optimism",
"reth-network-api/optimism",
"reth-rpc-types/optimism",
]