[package]
name = "tide"
version = "0.13.0"
description = "Serve the web – HTTP server framework"
authors = [
"Aaron Turon <aturon@mozilla.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
"Wonwoo Choi <chwo9843@gmail.com>",
]
documentation = "https://docs.rs/tide"
keywords = ["tide", "http", "web", "framework", "async"]
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server"
]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/http-rs/tide"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["h1-server", "logger", "sessions"]
h1-server = ["async-h1"]
logger = []
docs = ["unstable"]
sessions = ["async-session"]
unstable = []
__internal__bench = []
[dependencies]
async-h1 = { version = "2.0.1", optional = true }
async-session = { version = "2.0.0", optional = true }
async-sse = "4.0.0"
async-std = { version = "1.6.0", features = ["unstable"] }
async-trait = "0.1.36"
femme = "2.0.1"
futures-util = "0.3.5"
http-types = "2.2.1"
kv-log-macro = "1.0.4"
pin-project-lite = "0.1.7"
route-recognizer = "0.2.0"
serde = "1.0.102"
serde_json = "1.0.41"
[dev-dependencies]
async-std = { version = "1.6.0", features = ["unstable", "attributes"] }
criterion = "0.3.1"
juniper = "0.14.1"
lazy_static = "1.4.0"
logtest = "2.0.0"
portpicker = "0.1.0"
serde = { version = "1.0.102", features = ["derive"] }
surf = { version = "2.0.0-alpha.3", default-features = false, features = ["h1-client"] }
tempfile = "3.1.0"
[[test]]
name = "nested"
path = "tests/nested.rs"
required-features = ["unstable"]
[[bench]]
name = "router"
harness = false