[package] name = "rocket_http" version = "0.5.0-dev" authors = ["Sergio Benitez "] description = """ Types, traits, and parsers for HTTP requests, responses, and headers. """ documentation = "https://api.rocket.rs/v0.5/rocket_http/" homepage = "https://rocket.rs" repository = "https://github.com/SergioBenitez/Rocket" readme = "../../README.md" keywords = ["rocket", "web", "framework", "http"] license = "MIT OR Apache-2.0" categories = ["web-programming"] edition = "2018" [features] default = [] tls = ["tokio-rustls"] private-cookies = ["cookie/private", "cookie/key-expansion"] [dependencies] smallvec = "1.0" percent-encoding = "1" # TODO.async: stop using stream-unstable hyper = { version = "=0.13.0-alpha.4", default-features = false, features = ["unstable-stream"] } http = "0.1.17" mime = "0.3.13" time = "0.2.11" indexmap = "1.0" state = "0.4" tokio-rustls = { version = "0.12.0-alpha.4", optional = true } tokio-io = "=0.2.0-alpha.6" tokio-net = { version = "=0.2.0-alpha.6", features = ["tcp"] } tokio-timer = "=0.3.0-alpha.6" cookie = { version = "0.14.0", features = ["percent-encode"] } pear = "0.1" unicode-xid = "0.2" futures-core-preview = "0.3.0-alpha.19" log = "0.4" [dev-dependencies] rocket = { version = "0.5.0-dev", path = "../lib" }