Files
axum/Cargo.toml
T

24 lines
509 B
TOML
Raw Normal View History

2021-05-29 21:13:06 +02:00
[package]
name = "tower-web"
version = "0.1.0"
authors = ["David Pedersen <[email protected]>"]
edition = "2018"
[dependencies]
async-trait = "0.1"
bytes = "1.0"
2021-05-30 01:11:18 +02:00
futures-util = "0.3"
2021-05-29 21:13:06 +02:00
http = "0.2"
http-body = "0.4"
hyper = "0.14"
2021-05-30 01:11:18 +02:00
pin-project = "1.0"
2021-05-29 21:13:06 +02:00
serde = "1.0"
serde_json = "1.0"
2021-05-30 01:11:18 +02:00
serde_urlencoded = "0.7"
2021-05-29 21:13:06 +02:00
thiserror = "1.0"
2021-05-30 01:11:18 +02:00
tower = { version = "0.4", features = ["util"] }
2021-05-29 21:13:06 +02:00
[dev-dependencies]
tokio = { version = "1.6.1", features = ["macros", "rt"] }
serde = { version = "1.0", features = ["derive"] }