axum/Cargo.toml

85 lines
2.1 KiB
TOML
Raw Normal View History

2021-05-29 21:13:06 +02:00
[package]
authors = ["David Pedersen <david.pdrsn@gmail.com>"]
2021-06-13 11:22:02 +02:00
categories = [] # TODO
2021-06-12 20:18:21 +02:00
description = "Web framework that focuses on ergonomics and modularity"
documentation = "https://docs.rs/tower-http/0.1.0"
2021-05-29 21:13:06 +02:00
edition = "2018"
2021-06-13 11:22:02 +02:00
homepage = "https://github.com/davidpdrsn/awebframework"
2021-06-12 20:18:21 +02:00
keywords = ["http", "web", "framework"]
license = "MIT"
2021-06-13 11:22:02 +02:00
name = "awebframework"
2021-06-12 20:18:21 +02:00
readme = "README.md"
2021-06-13 11:22:02 +02:00
repository = "https://github.com/davidpdrsn/awebframework"
2021-06-12 20:18:21 +02:00
version = "0.1.0"
2021-05-29 21:13:06 +02:00
[features]
default = ["hyper-h1"]
ws = ["tokio-tungstenite", "sha-1", "base64"]
hyper-h1 = ["hyper/http1"]
hyper-h2 = ["hyper/http2"]
2021-05-29 21:13:06 +02:00
[dependencies]
async-trait = "0.1"
bytes = "1.0"
futures-util = "0.3"
2021-05-29 21:13:06 +02:00
http = "0.2"
http-body = "0.4"
hyper = { version = "0.14", features = ["server", "tcp"] }
pin-project = "1.0"
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"] }
tower = { version = "0.4", features = ["util", "buffer", "make"] }
tower-http = { version = "0.1", features = ["add-extension", "map-response-body"] }
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" }
2021-05-29 21:13:06 +02:00
[dev-dependencies]
2021-06-13 13:58:12 +02:00
askama = "0.10.5"
bb8 = "0.7.0"
bb8-postgres = "0.7.0"
2021-05-31 12:22:16 +02:00
hyper = { version = "0.14", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "stream"] }
2021-05-29 21:13:06 +02:00
serde = { version = "1.0", features = ["derive"] }
2021-05-31 12:22:16 +02:00
tokio = { version = "1.6.1", features = ["macros", "rt", "rt-multi-thread"] }
tokio-postgres = "0.7.2"
2021-05-30 14:33:20 +02:00
tracing = "0.1"
tracing-subscriber = "0.2"
2021-06-06 15:19:54 +02:00
uuid = "0.8"
[dev-dependencies.tower]
version = "0.4"
features = [
"util",
"timeout",
"limit",
"load-shed",
"steer",
"filter",
]
[dev-dependencies.tower-http]
version = "0.1"
features = [
2021-06-02 22:07:37 +02:00
"add-extension",
2021-06-08 22:27:38 +02:00
"auth",
"compression",
"compression-full",
"fs",
"redirect",
2021-06-08 22:27:38 +02:00
"trace",
]
2021-06-12 20:18:21 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.playground]
features = ["ws"]