mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
73 lines
1.9 KiB
TOML
73 lines
1.9 KiB
TOML
[package]
|
|
name = "awc"
|
|
version = "3.0.0-beta.1"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
|
|
readme = "README.md"
|
|
keywords = ["actix", "http", "framework", "async", "web"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
documentation = "https://docs.rs/awc/"
|
|
categories = [
|
|
"network-programming",
|
|
"asynchronous",
|
|
"web-programming::http-client",
|
|
"web-programming::websocket",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "awc"
|
|
path = "src/lib.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["openssl", "rustls", "compress"]
|
|
|
|
[features]
|
|
default = ["compress"]
|
|
|
|
# openssl
|
|
openssl = ["tls-openssl", "actix-http/openssl"]
|
|
|
|
# rustls
|
|
rustls = ["tls-rustls", "actix-http/rustls"]
|
|
|
|
# content-encoding support
|
|
compress = ["actix-http/compress"]
|
|
|
|
[dependencies]
|
|
actix-codec = "0.4.0-beta.1"
|
|
actix-service = "2.0.0-beta.4"
|
|
actix-http = "3.0.0-beta.1"
|
|
actix-rt = "2"
|
|
|
|
base64 = "0.13"
|
|
bytes = "1"
|
|
cfg-if = "1.0"
|
|
derive_more = "0.99.5"
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
log =" 0.4"
|
|
mime = "0.3"
|
|
percent-encoding = "2.1"
|
|
rand = "0.8"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_urlencoded = "0.7"
|
|
tls-openssl = { version = "0.10.9", package = "openssl", optional = true }
|
|
tls-rustls = { version = "0.19.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }
|
|
|
|
[dev-dependencies]
|
|
actix-web = { version = "4.0.0-beta.1", features = ["openssl"] }
|
|
actix-http = { version = "3.0.0-beta.1", features = ["openssl"] }
|
|
actix-http-test = { version = "3.0.0-beta.1", features = ["openssl"] }
|
|
actix-utils = "3.0.0-beta.1"
|
|
actix-server = "2.0.0-beta.3"
|
|
actix-tls = { version = "3.0.0-beta.3", features = ["openssl", "rustls"] }
|
|
|
|
brotli2 = "0.3.2"
|
|
flate2 = "1.0.13"
|
|
futures-util = { version = "0.3.7", default-features = false }
|
|
env_logger = "0.8"
|
|
rcgen = "0.8"
|
|
webpki = "0.21"
|