1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-12 19:57:38 +01:00
actix-web/awc/Cargo.toml

72 lines
1.9 KiB
TOML
Raw Permalink Normal View History

2019-03-25 21:58:01 -07:00
[package]
name = "awc"
2020-07-22 01:13:10 +01:00
version = "2.0.0-beta.2"
2019-03-25 21:58:01 -07:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2020-07-22 01:13:10 +01:00
description = "Async HTTP client library that uses the Actix runtime."
2019-03-25 21:58:01 -07:00
readme = "README.md"
2019-03-28 13:46:26 -07:00
keywords = ["actix", "http", "framework", "async", "web"]
2019-03-25 21:58:01 -07:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/awc/"
2020-07-22 01:13:10 +01:00
categories = [
"network-programming",
"asynchronous",
"web-programming::http-client",
"web-programming::websocket",
]
license = "MIT OR Apache-2.0"
2019-03-25 21:58:01 -07:00
edition = "2018"
[lib]
name = "awc"
path = "src/lib.rs"
2019-03-26 18:46:06 -07:00
[package.metadata.docs.rs]
features = ["openssl", "rustls", "compress"]
2019-03-26 18:46:06 -07:00
2019-03-25 21:58:01 -07:00
[features]
2019-12-15 13:36:05 +06:00
default = ["compress"]
2019-03-25 21:58:01 -07:00
# openssl
openssl = ["open-ssl", "actix-http/openssl"]
2019-03-25 21:58:01 -07:00
# rustls
2019-12-05 23:35:43 +06:00
rustls = ["rust-tls", "actix-http/rustls"]
# content-encoding support
compress = ["actix-http/compress"]
2019-03-26 18:46:06 -07:00
2019-03-25 21:58:01 -07:00
[dependencies]
2019-12-11 19:20:20 +06:00
actix-codec = "0.2.0"
2019-12-22 16:39:25 +04:00
actix-service = "1.0.1"
2020-07-22 01:13:10 +01:00
actix-http = "2.0.0-beta.2"
2019-12-11 19:20:20 +06:00
actix-rt = "1.0.0"
2020-05-21 09:51:58 +09:00
base64 = "0.12"
2019-12-13 12:36:15 +06:00
bytes = "0.5.3"
2019-11-25 17:59:14 +06:00
derive_more = "0.99.2"
2020-05-18 11:46:57 +09:00
futures-core = { version = "0.3.5", default-features = false }
2019-03-25 21:58:01 -07:00
log =" 0.4"
2019-04-01 11:51:18 -07:00
mime = "0.3"
2019-08-13 10:48:11 -07:00
percent-encoding = "2.1"
2019-07-01 11:37:03 +08:00
rand = "0.7"
2019-03-25 21:58:01 -07:00
serde = "1.0"
serde_json = "1.0"
2019-08-13 10:48:11 -07:00
serde_urlencoded = "0.6.1"
open-ssl = { version = "0.10", package = "openssl", optional = true }
rust-tls = { version = "0.17.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }
2019-03-25 21:58:01 -07:00
[dev-dependencies]
actix-connect = { version = "2.0.0-alpha.2", features = ["openssl"] }
actix-web = { version = "3.0.0-alpha.3", features = ["openssl"] }
2020-07-22 01:13:10 +01:00
actix-http = { version = "2.0.0-beta.2", features = ["openssl"] }
actix-http-test = { version = "2.0.0-alpha.1", features = ["openssl"] }
2019-12-13 12:10:45 +06:00
actix-utils = "1.0.3"
2019-12-11 19:20:20 +06:00
actix-server = "1.0.0"
actix-tls = { version = "2.0.0-alpha.1", features = ["openssl", "rustls"] }
2019-12-20 13:50:07 +06:00
brotli2 = "0.3.2"
flate2 = "1.0.13"
2020-05-18 11:46:57 +09:00
futures-util = { version = "0.3.5", default-features = false }
2020-03-01 10:44:26 +09:00
env_logger = "0.7"
webpki = "0.21"