mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: pull async-stream into workspace deps (#7794)
This commit is contained in:
@ -342,6 +342,7 @@ tokio = { version = "1.21", default-features = false }
|
|||||||
tokio-util = { version = "0.7.4", features = ["codec"] }
|
tokio-util = { version = "0.7.4", features = ["codec"] }
|
||||||
|
|
||||||
# async
|
# async
|
||||||
|
async-stream = "0.3"
|
||||||
async-trait = "0.1.68"
|
async-trait = "0.1.68"
|
||||||
futures = "0.3.26"
|
futures = "0.3.26"
|
||||||
pin-project = "1.0.12"
|
pin-project = "1.0.12"
|
||||||
|
|||||||
@ -35,15 +35,24 @@ reth-tracing.workspace = true
|
|||||||
test-fuzz.workspace = true
|
test-fuzz.workspace = true
|
||||||
tokio-util = { workspace = true, features = ["io", "codec"] }
|
tokio-util = { workspace = true, features = ["io", "codec"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
secp256k1 = { workspace = true, features = [
|
||||||
|
"global-context",
|
||||||
|
"rand-std",
|
||||||
|
"recovery",
|
||||||
|
] }
|
||||||
|
|
||||||
arbitrary = { workspace = true, features = ["derive"] }
|
arbitrary = { workspace = true, features = ["derive"] }
|
||||||
proptest.workspace = true
|
proptest.workspace = true
|
||||||
proptest-derive.workspace = true
|
proptest-derive.workspace = true
|
||||||
async-stream = "0.3"
|
async-stream.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["serde"]
|
default = ["serde"]
|
||||||
serde = ["dep:serde"]
|
serde = ["dep:serde"]
|
||||||
arbitrary = ["reth-primitives/arbitrary", "dep:arbitrary", "dep:proptest", "dep:proptest-derive"]
|
arbitrary = [
|
||||||
|
"reth-primitives/arbitrary",
|
||||||
|
"dep:arbitrary",
|
||||||
|
"dep:proptest",
|
||||||
|
"dep:proptest-derive",
|
||||||
|
]
|
||||||
optimism = ["reth-primitives/optimism"]
|
optimism = ["reth-primitives/optimism"]
|
||||||
|
|||||||
@ -49,17 +49,26 @@ reth-tracing.workspace = true
|
|||||||
test-fuzz.workspace = true
|
test-fuzz.workspace = true
|
||||||
tokio-util = { workspace = true, features = ["io", "codec"] }
|
tokio-util = { workspace = true, features = ["io", "codec"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
secp256k1 = { workspace = true, features = [
|
||||||
|
"global-context",
|
||||||
|
"rand-std",
|
||||||
|
"recovery",
|
||||||
|
] }
|
||||||
|
|
||||||
arbitrary = { workspace = true, features = ["derive"] }
|
arbitrary = { workspace = true, features = ["derive"] }
|
||||||
proptest.workspace = true
|
proptest.workspace = true
|
||||||
proptest-derive.workspace = true
|
proptest-derive.workspace = true
|
||||||
async-stream = "0.3"
|
async-stream.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["serde"]
|
default = ["serde"]
|
||||||
serde = ["dep:serde"]
|
serde = ["dep:serde"]
|
||||||
arbitrary = ["reth-primitives/arbitrary", "dep:arbitrary", "dep:proptest", "dep:proptest-derive"]
|
arbitrary = [
|
||||||
|
"reth-primitives/arbitrary",
|
||||||
|
"dep:arbitrary",
|
||||||
|
"dep:proptest",
|
||||||
|
"dep:proptest-derive",
|
||||||
|
]
|
||||||
optimism = ["reth-primitives/optimism"]
|
optimism = ["reth-primitives/optimism"]
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
|
|||||||
Reference in New Issue
Block a user