forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (48 loc) · 1.24 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "reth-transaction-pool"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = """
Transaction pool implementation
"""
[package.metadata.cargo-udeps.ignore]
normal = [
# Used for diagrams in docs
"aquamarine",
]
[dependencies]
# reth
reth-primitives = { workspace = true }
reth-provider = { workspace = true }
reth-interfaces = { workspace = true }
reth-rlp = { workspace = true }
reth-metrics = { workspace = true }
reth-tasks = { workspace = true }
# async/futures
async-trait = { workspace = true}
futures-util = { workspace = true }
parking_lot = "0.12"
tokio = { workspace = true, default-features = false, features = ["sync"] }
tokio-stream.workspace = true
# misc
aquamarine = "0.3.0"
thiserror = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"], optional = true }
fnv = "1.0.7"
bitflags = "1.3"
auto_impl = "1.0"
# testing
rand = { workspace = true, optional = true }
paste = { version = "1.0", optional = true }
[dev-dependencies]
paste = "1.0"
rand = "0.8"
[features]
default = ["serde"]
serde = ["dep:serde"]
test-utils = ["rand", "paste", "serde"]