chore: add msrv to manifests, add and use workspace.package (#3006)

This commit is contained in:
DaniPopes
2023-06-06 05:45:44 +02:00
committed by GitHub
parent adf4328cec
commit 171166e84a
48 changed files with 306 additions and 300 deletions

View File

@ -2,10 +2,11 @@
name = "reth-eth-wire"
description = "Implements the eth/64 and eth/65 P2P protocols"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
bytes = "1.4"
@ -16,11 +17,17 @@ serde = { version = "1", optional = true }
reth-codecs = { path = "../../storage/codecs" }
reth-primitives = { path = "../../primitives" }
reth-ecies = { path = "../ecies" }
reth-rlp = { path = "../../rlp", features = ["alloc", "derive", "std", "ethereum-types", "smol_str"] }
reth-rlp = { path = "../../rlp", features = [
"alloc",
"derive",
"std",
"ethereum-types",
"smol_str",
] }
reth-metrics = { path = "../../metrics" }
# used for Chain and builders
ethers-core = { version = "2.0.7", default-features = false}
ethers-core = { version = "2.0.7", default-features = false }
tokio = { version = "1.21.2", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["io", "codec"] }
@ -40,7 +47,7 @@ proptest-derive = { version = "0.3", optional = true }
[dev-dependencies]
reth-primitives = { path = "../../primitives", features = ["arbitrary"] }
reth-tracing = { path = "../../tracing" }
ethers-core = { version = "2.0.7", default-features = false}
ethers-core = { version = "2.0.7", default-features = false }
test-fuzz = "3.0.4"
tokio-util = { version = "0.7.4", features = ["io", "codec"] }