axum/Cargo.toml

76 lines
2 KiB
TOML
Raw Normal View History

2021-05-29 21:13:06 +02:00
[package]
authors = ["David Pedersen <david.pdrsn@gmail.com>"]
2021-07-30 15:56:01 +02:00
categories = ["asynchronous", "network-programming", "web-programming"]
2021-06-12 20:18:21 +02:00
description = "Web framework that focuses on ergonomics and modularity"
2021-05-29 21:13:06 +02:00
edition = "2018"
2021-07-22 19:39:08 +02:00
homepage = "https://github.com/tokio-rs/axum"
2021-06-12 20:18:21 +02:00
keywords = ["http", "web", "framework"]
license = "MIT"
2021-07-09 21:36:14 +02:00
name = "axum"
2021-06-12 20:18:21 +02:00
readme = "README.md"
2021-07-22 19:39:08 +02:00
repository = "https://github.com/tokio-rs/axum"
version = "0.1.3"
2021-05-29 21:13:06 +02:00
[workspace]
members = ["examples/*"]
[features]
default = []
ws = ["tokio-tungstenite", "sha-1", "base64"]
multipart = ["multer", "mime"]
2021-05-29 21:13:06 +02:00
[dependencies]
async-trait = "0.1"
bitflags = "1.0"
2021-05-29 21:13:06 +02:00
bytes = "1.0"
2021-08-10 20:08:44 +02:00
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
2021-05-29 21:13:06 +02:00
http = "0.2"
http-body = "0.4.3"
hyper = { version = "0.14", features = ["server", "tcp", "http1", "stream"] }
pin-project-lite = "0.2.7"
2021-06-08 22:27:38 +02:00
regex = "1.5"
2021-05-29 21:13:06 +02:00
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
2021-06-08 22:27:38 +02:00
tokio = { version = "1", features = ["time"] }
tokio-util = "0.6"
tower = { version = "0.4", features = ["util", "buffer", "make"] }
tower-http = { version = "0.1", features = ["add-extension", "map-response-body"] }
2021-08-14 17:29:09 +02:00
sync_wrapper = "0.1.1"
2021-05-29 21:13:06 +02:00
# optional dependencies
tokio-tungstenite = { optional = true, version = "0.14" }
sha-1 = { optional = true, version = "0.9.6" }
base64 = { optional = true, version = "0.13" }
headers = { optional = true, version = "0.3" }
multer = { optional = true, version = "2.0.0" }
mime = { optional = true, version = "0.3" }
2021-05-29 21:13:06 +02:00
[dev-dependencies]
2021-06-19 12:50:33 +02:00
futures = "0.3"
2021-05-31 12:22:16 +02:00
reqwest = { version = "0.11", features = ["json", "stream"] }
2021-05-29 21:13:06 +02:00
serde = { version = "1.0", features = ["derive"] }
2021-08-01 08:32:47 +02:00
tokio = { version = "1.6.1", features = ["macros", "rt", "rt-multi-thread", "net"] }
[dev-dependencies.tower]
version = "0.4"
features = [
"util",
"timeout",
"limit",
"load-shed",
"steer",
"filter",
]
[dev-dependencies.tower-http]
version = "0.1"
2021-06-19 12:50:33 +02:00
features = ["full"]
2021-06-12 20:18:21 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.playground]
features = ["ws", "multipart", "headers"]