tower/examples/Cargo.toml
2025-07-03 09:52:53 +02:00

23 lines
502 B
TOML

[package]
name = "examples"
version = "0.0.0"
publish = false
edition = "2018"
# If you copy one of the examples into a new project, you should be using
# [dependencies] instead.
[dev-dependencies]
tower = { version = "0.4", path = "../tower", features = ["full"] }
tower-service = "0.3"
tokio = { version = "1.0", features = ["full"] }
rand = "0.9"
pin-project = "1.0"
futures = "0.3.22"
tracing = "0.1"
tracing-subscriber = "0.2"
hdrhistogram = "7"
[[example]]
name = "balance"
path = "balance.rs"