mirror of
https://github.com/actix/actix-web.git
synced 2024-11-04 16:09:44 +00:00
120 lines
2.9 KiB
TOML
120 lines
2.9 KiB
TOML
[package]
|
|
name = "actix-http"
|
|
version = "3.0.0-beta.4"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "HTTP primitives for the Actix ecosystem"
|
|
readme = "README.md"
|
|
keywords = ["actix", "http", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
documentation = "https://docs.rs/actix-http/"
|
|
categories = ["network-programming", "asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::websocket"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
# features that docs.rs will build with
|
|
features = ["openssl", "rustls", "compress", "cookies", "secure-cookies"]
|
|
|
|
[lib]
|
|
name = "actix_http"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# openssl
|
|
openssl = ["actix-tls/openssl"]
|
|
|
|
# rustls support
|
|
rustls = ["actix-tls/rustls"]
|
|
|
|
# enable compression support
|
|
compress = ["flate2", "brotli2"]
|
|
|
|
# support for cookies
|
|
cookies = ["cookie"]
|
|
|
|
# support for secure cookies
|
|
secure-cookies = ["cookies", "cookie/secure"]
|
|
|
|
# trust-dns as client dns resolver
|
|
trust-dns = ["trust-dns-resolver"]
|
|
|
|
[dependencies]
|
|
actix-service = "2.0.0-beta.4"
|
|
actix-codec = "0.4.0-beta.1"
|
|
actix-utils = "3.0.0-beta.2"
|
|
actix-rt = "2.1"
|
|
actix-tls = "3.0.0-beta.4"
|
|
|
|
ahash = "0.7"
|
|
base64 = "0.13"
|
|
bitflags = "1.2"
|
|
bytes = "1"
|
|
bytestring = "1"
|
|
cfg-if = "1"
|
|
cookie = { version = "0.14.1", features = ["percent-encode"], optional = true }
|
|
derive_more = "0.99.5"
|
|
encoding_rs = "0.8"
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["alloc", "sink"] }
|
|
h2 = "0.3.1"
|
|
http = "0.2.2"
|
|
httparse = "1.3"
|
|
itoa = "0.4"
|
|
language-tags = "0.2"
|
|
once_cell = "1.5"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
percent-encoding = "2.1"
|
|
pin-project = "1.0.0"
|
|
rand = "0.8"
|
|
regex = "1.3"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_urlencoded = "0.7"
|
|
sha-1 = "0.9"
|
|
smallvec = "1.6"
|
|
time = { version = "0.2.23", default-features = false, features = ["std"] }
|
|
tokio = { version = "1.2", features = ["sync"] }
|
|
|
|
# compression
|
|
brotli2 = { version="0.3.2", optional = true }
|
|
flate2 = { version = "1.0.13", optional = true }
|
|
|
|
trust-dns-resolver = { version = "0.20.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-server = "2.0.0-beta.3"
|
|
actix-http-test = { version = "3.0.0-beta.3", features = ["openssl"] }
|
|
actix-tls = { version = "3.0.0-beta.4", features = ["openssl"] }
|
|
criterion = "0.3"
|
|
env_logger = "0.8"
|
|
rcgen = "0.8"
|
|
serde_derive = "1.0"
|
|
tls-openssl = { version = "0.10", package = "openssl" }
|
|
tls-rustls = { version = "0.19", package = "rustls" }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies.tls-openssl]
|
|
version = "0.10.9"
|
|
package = "openssl"
|
|
features = ["vendored"]
|
|
|
|
[[example]]
|
|
name = "ws"
|
|
required-features = ["rustls"]
|
|
|
|
[[bench]]
|
|
name = "write-camel-case"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "status-line"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "uninit-headers"
|
|
harness = false
|