Files
axum/axum-extra/Cargo.toml
T

39 lines
1.0 KiB
TOML
Raw Normal View History

2021-11-17 21:00:32 +01:00
[package]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Extra utilities for axum"
edition = "2018"
homepage = "https://github.com/tokio-rs/axum"
keywords = ["http", "web", "framework"]
license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
2022-01-13 10:37:56 +01:00
version = "0.1.2"
2021-11-17 21:00:32 +01:00
2021-11-17 22:54:02 +01:00
[features]
erased-json = ["serde", "serde_json"]
2021-11-17 21:00:32 +01:00
[dependencies]
axum = { path = "../axum", version = "0.4" }
2021-12-28 10:41:21 +00:00
bytes = "1.1.0"
2021-11-25 11:14:31 +01:00
http = "0.2"
mime = "0.3"
pin-project-lite = "0.2"
2021-12-27 23:28:58 +01:00
tower = { version = "0.4", default_features = false, features = ["util"] }
2022-01-25 10:19:06 +01:00
tower-http = { version = "0.2", features = ["map-response-body"] }
tower-layer = "0.3"
2021-11-17 23:31:43 +01:00
tower-service = "0.3"
# optional dependencies
2021-11-17 22:54:02 +01:00
serde = { version = "1.0.130", optional = true }
serde_json = { version = "1.0.71", optional = true }
2021-11-17 23:31:43 +01:00
[dev-dependencies]
hyper = "0.14"
tokio = { version = "1.14", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
[package.metadata.docs.rs]
all-features = true
rustdocflags = ["--cfg", "docsrs"]