mirror of https://github.com/rwf2/Rocket.git
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[package]
|
|
name = "rocket_http"
|
|
version = "0.5.0-dev"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
description = """
|
|
Types, traits, and parsers for HTTP requests, responses, and headers.
|
|
"""
|
|
documentation = "https://api.rocket.rs/master/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"]
|
|
serde = ["uncased/with-serde-alloc", "_serde"]
|
|
uuid = ["_uuid"]
|
|
|
|
[dependencies]
|
|
smallvec = "1.0"
|
|
percent-encoding = "2"
|
|
http = "0.2"
|
|
mime = "0.3.13"
|
|
time = "0.2.11"
|
|
indexmap = { version = "1.5.2", features = ["std"] }
|
|
tokio-rustls = { version = "0.22.0", optional = true }
|
|
tokio = { version = ">=1.4,<1.6", features = ["net", "sync", "time"] }
|
|
log = "0.4"
|
|
ref-cast = "1.0"
|
|
uncased = "0.9.6"
|
|
parking_lot = "0.11"
|
|
either = "1"
|
|
pear = "0.2.3"
|
|
pin-project-lite = "0.2"
|
|
memchr = "2"
|
|
stable-pattern = "0.1"
|
|
cookie = { version = "0.15", features = ["percent-encode"] }
|
|
|
|
[dependencies.hyper]
|
|
version = "0.14.5"
|
|
default-features = false
|
|
features = ["http1", "http2", "runtime", "server", "stream"]
|
|
|
|
[dependencies.state]
|
|
git = "https://github.com/SergioBenitez/state.git"
|
|
rev = "8f94dc"
|
|
|
|
[dependencies._serde]
|
|
package = "serde"
|
|
version = "1.0"
|
|
optional = true
|
|
default-features = false
|
|
features = ["std"]
|
|
|
|
[dependencies._uuid]
|
|
package = "uuid"
|
|
version = "0.8"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies]
|
|
rocket = { version = "0.5.0-dev", path = "../lib" }
|