mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
119 lines
2.9 KiB
TOML
119 lines
2.9 KiB
TOML
[package]
|
|
name = "actix-http"
|
|
version = "3.0.0-beta.18"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "HTTP primitives for the Actix ecosystem"
|
|
keywords = ["actix", "http", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
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-brotli", "compress-gzip", "compress-zstd"]
|
|
|
|
[lib]
|
|
name = "actix_http"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# openssl
|
|
openssl = ["actix-tls/accept", "actix-tls/openssl"]
|
|
|
|
# rustls support
|
|
rustls = ["actix-tls/accept", "actix-tls/rustls"]
|
|
|
|
# enable compression support
|
|
compress-brotli = ["brotli2", "__compress"]
|
|
compress-gzip = ["flate2", "__compress"]
|
|
compress-zstd = ["zstd", "__compress"]
|
|
|
|
# Internal (PRIVATE!) features used to aid testing and cheking feature status.
|
|
# Don't rely on these whatsoever. They may disappear at anytime.
|
|
__compress = []
|
|
|
|
[dependencies]
|
|
actix-service = "2.0.0"
|
|
actix-codec = "0.4.1"
|
|
actix-utils = "3.0.0"
|
|
actix-rt = { version = "2.2", default-features = false }
|
|
|
|
ahash = "0.7"
|
|
base64 = "0.13"
|
|
bitflags = "1.2"
|
|
bytes = "1"
|
|
bytestring = "1"
|
|
derive_more = "0.99.5"
|
|
encoding_rs = "0.8"
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
h2 = "0.3.9"
|
|
http = "0.2.5"
|
|
httparse = "1.5.1"
|
|
httpdate = "1.0.1"
|
|
itoa = "1"
|
|
language-tags = "0.3"
|
|
local-channel = "0.1"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
percent-encoding = "2.1"
|
|
pin-project-lite = "0.2"
|
|
rand = "0.8"
|
|
sha-1 = "0.10"
|
|
smallvec = "1.6.1"
|
|
|
|
# tls
|
|
actix-tls = { version = "3.0.0", default-features = false, optional = true }
|
|
|
|
# compression
|
|
brotli2 = { version="0.3.2", optional = true }
|
|
flate2 = { version = "1.0.13", optional = true }
|
|
zstd = { version = "0.9", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-http-test = { version = "3.0.0-beta.11", features = ["openssl"] }
|
|
actix-server = "2.0.0-rc.2"
|
|
actix-tls = { version = "3.0.0", features = ["openssl"] }
|
|
actix-web = "4.0.0-beta.20"
|
|
|
|
async-stream = "0.3"
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
|
env_logger = "0.9"
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
rcgen = "0.8"
|
|
regex = "1.3"
|
|
rustls-pemfile = "0.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
static_assertions = "1"
|
|
tls-openssl = { package = "openssl", version = "0.10.9" }
|
|
tls-rustls = { package = "rustls", version = "0.20.0" }
|
|
tokio = { version = "1.8.4", features = ["net", "rt", "macros"] }
|
|
|
|
[[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
|
|
|
|
[[bench]]
|
|
name = "quality-value"
|
|
harness = false
|