mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
19150df355
* dandelion-tower: add/fix workspace lints * fmt * fixes * todos * fixes * fixes * expect reason
30 lines
No EOL
876 B
TOML
30 lines
No EOL
876 B
TOML
[package]
|
|
name = "cuprate-dandelion-tower"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
[features]
|
|
default = ["txpool"]
|
|
txpool = ["dep:rand_distr", "dep:tokio-util", "dep:tokio"]
|
|
|
|
[dependencies]
|
|
tower = { workspace = true, features = ["util"] }
|
|
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"] }
|
|
proptest = { workspace = true, features = ["default"] }
|
|
|
|
[lints]
|
|
workspace = true |