[package]
name = "tide"
version = "0.3.0"
description = "Serve the web – HTTP server framework"
authors = [
"Aaron Turon <aturon@mozilla.com>",
"Yoshua Wuyts <yoshuawuyts@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"
[dependencies]
cookie = { version = "0.12.0", features = ["percent-encode"] }
futures-preview = "0.3.0-alpha.19"
fnv = "1.0.6"
http = "0.1.19"
http-service = "0.3.1"
pin-utils = "0.1.0-alpha.4"
route-recognizer = "0.1.13"
serde = "1.0.102"
serde_derive = "1.0.102"
serde_json = "1.0.41"
slog = "2.5.2"
slog-async = "2.3.0"
slog-term = "2.4.2"
typemap = "0.3.3"
serde_urlencoded = "0.6.1"
[dependencies.http-service-hyper]
optional = true
version = "0.3.1"
[dependencies.multipart]
default-features = false
features = ["server"]
version = "0.16.1"
[features]
default = ["hyper"]
hyper = ["http-service-hyper"]
unstable = []
[dev-dependencies]
basic-cookies = "0.1.3"
bytes = "0.4.12"
futures-fs = "0.0.5"
futures-util-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
http-service-mock = "0.3.1"
juniper = "0.14.1"
mime = "0.3.14"
mime_guess = "2.0.1"
percent-encoding = "2.1.0"
serde = { version = "1.0.102", features = ["derive"] }
structopt = "0.3.3"