2024-05-05 19:22:41 +00:00
|
|
|
[package]
|
2024-06-24 01:30:47 +00:00
|
|
|
name = "cuprate-dandelion-tower"
|
2024-05-05 19:22:41 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Boog900"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["txpool"]
|
|
|
|
txpool = ["dep:rand_distr", "dep:tokio-util", "dep:tokio"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-01 19:23:40 +00:00
|
|
|
tower = { workspace = true, features = ["util"] }
|
2024-05-05 19:22:41 +00:00
|
|
|
tracing = { workspace = true, features = ["std"] }
|
|
|
|
|
|
|
|
futures = { workspace = true, features = ["std"] }
|
|
|
|
tokio = { workspace = true, features = ["rt", "sync", "macros"], optional = true}
|
|
|
|
tokio-util = { workspace = true, features = ["time"], optional = true }
|
|
|
|
|
|
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
|
|
|
rand_distr = { workspace = true, features = ["std"], optional = true }
|
|
|
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync"] }
|
2024-09-20 13:36:34 +00:00
|
|
|
proptest = { workspace = true, features = ["default"] }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|