mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
107 lines
2.6 KiB
TOML
107 lines
2.6 KiB
TOML
[package]
|
|
name = "actix-http"
|
|
version = "3.0.0-beta.1"
|
|
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 = ["openssl", "rustls", "compress", "secure-cookies", "actors"]
|
|
|
|
[lib]
|
|
name = "actix_http"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# openssl
|
|
openssl = ["actix-tls/openssl"]
|
|
|
|
# rustls support
|
|
rustls = ["actix-tls/rustls"]
|
|
|
|
# enable compressison support
|
|
compress = ["flate2", "brotli2"]
|
|
|
|
# support for secure cookies
|
|
secure-cookies = ["cookie/secure"]
|
|
|
|
# support for actix Actor messages
|
|
actors = ["actix"]
|
|
|
|
[dependencies]
|
|
actix-service = "2.0.0-beta.3"
|
|
actix-codec = "0.4.0-beta.1"
|
|
actix-utils = "3.0.0-beta.1"
|
|
actix-rt = "2.0.0-beta.2"
|
|
actix-tls = "3.0.0-beta.2"
|
|
actix = { version = "0.11.0-beta.1", optional = true }
|
|
|
|
base64 = "0.13"
|
|
bitflags = "1.2"
|
|
bytes = "1"
|
|
bytestring = "1"
|
|
cookie = { version = "0.14.1", features = ["percent-encode"] }
|
|
derive_more = "0.99.5"
|
|
either = "1.5.3"
|
|
encoding_rs = "0.8"
|
|
futures-channel = { version = "0.3.7", default-features = false }
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
|
|
ahash = "0.6"
|
|
h2 = "0.3.0"
|
|
http = "0.2.2"
|
|
httparse = "1.3"
|
|
indexmap = "1.3"
|
|
itoa = "0.4"
|
|
lazy_static = "1.4"
|
|
language-tags = "0.2"
|
|
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"
|
|
sha-1 = "0.9"
|
|
smallvec = "1.6"
|
|
slab = "0.4"
|
|
serde_urlencoded = "0.7"
|
|
time = { version = "0.2.7", default-features = false, features = ["std"] }
|
|
|
|
# compression
|
|
brotli2 = { version="0.3.2", optional = true }
|
|
flate2 = { version = "1.0.13", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-server = "2.0.0-beta.2"
|
|
actix-http-test = { version = "3.0.0-beta.1", features = ["openssl"] }
|
|
actix-tls = { version = "3.0.0-beta.2", features = ["openssl"] }
|
|
criterion = "0.3"
|
|
env_logger = "0.7"
|
|
serde_derive = "1.0"
|
|
open-ssl = { version="0.10", package = "openssl" }
|
|
rust-tls = { version="0.19", package = "rustls" }
|
|
|
|
[[bench]]
|
|
name = "write-camel-case"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "status-line"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "uninit-headers"
|
|
harness = false
|