1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/awc/Cargo.toml

83 lines
2.1 KiB
TOML
Raw Normal View History

2019-03-26 04:58:01 +00:00
[package]
name = "awc"
2021-02-10 12:10:03 +00:00
version = "3.0.0-beta.2"
2019-03-26 04:58:01 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2020-10-30 02:50:53 +00:00
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
2019-03-26 04:58:01 +00:00
readme = "README.md"
2019-03-28 20:46:26 +00:00
keywords = ["actix", "http", "framework", "async", "web"]
2019-03-26 04:58:01 +00:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/awc/"
2020-07-22 00:13:10 +00:00
categories = [
"network-programming",
"asynchronous",
"web-programming::http-client",
"web-programming::websocket",
]
license = "MIT OR Apache-2.0"
2019-03-26 04:58:01 +00:00
edition = "2018"
[lib]
name = "awc"
path = "src/lib.rs"
2019-03-27 01:46:06 +00:00
[package.metadata.docs.rs]
features = ["openssl", "rustls", "compress"]
2019-03-27 01:46:06 +00:00
2019-03-26 04:58:01 +00:00
[features]
2019-12-15 07:36:05 +00:00
default = ["compress"]
2019-03-26 04:58:01 +00:00
# openssl
2021-02-07 03:54:58 +00:00
openssl = ["tls-openssl", "actix-http/openssl"]
2019-03-26 04:58:01 +00:00
# rustls
2021-02-07 03:54:58 +00:00
rustls = ["tls-rustls", "actix-http/rustls"]
# content-encoding support
compress = ["actix-http/compress"]
2019-03-27 01:46:06 +00:00
# trust-dns as dns resolver
trust-dns = ["actix-http/trust-dns"]
2019-03-26 04:58:01 +00:00
[dependencies]
actix-codec = "0.4.0-beta.1"
actix-service = "2.0.0-beta.4"
actix-http = "3.0.0-beta.3"
actix-rt = "2"
2020-10-19 17:24:22 +00:00
base64 = "0.13"
bytes = "1"
cfg-if = "1.0"
2021-01-07 20:02:08 +00:00
derive_more = "0.99.5"
futures-core = { version = "0.3.7", default-features = false }
2019-03-26 04:58:01 +00:00
log =" 0.4"
2019-04-01 18:51:18 +00:00
mime = "0.3"
2019-08-13 17:48:11 +00:00
percent-encoding = "2.1"
2020-12-22 23:45:31 +00:00
rand = "0.8"
2019-03-26 04:58:01 +00:00
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
2021-02-07 03:54:58 +00:00
tls-openssl = { version = "0.10.9", package = "openssl", optional = true }
tls-rustls = { version = "0.19.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }
2019-03-26 04:58:01 +00:00
2021-02-12 21:53:21 +00:00
[target.'cfg(windows)'.dependencies.tls-openssl]
version = "0.10.9"
package = "openssl"
features = ["vendored"]
optional = true
2019-03-26 04:58:01 +00:00
[dev-dependencies]
2021-02-10 12:57:13 +00:00
actix-web = { version = "4.0.0-beta.3", features = ["openssl"] }
actix-http = { version = "3.0.0-beta.3", features = ["openssl"] }
2021-02-10 12:10:03 +00:00
actix-http-test = { version = "3.0.0-beta.2", 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"] }
2021-01-17 05:19:32 +00:00
2019-12-20 07:50:07 +00:00
brotli2 = "0.3.2"
flate2 = "1.0.13"
futures-util = { version = "0.3.7", default-features = false }
2021-02-07 03:54:58 +00:00
env_logger = "0.8"
2021-01-17 05:19:32 +00:00
rcgen = "0.8"
webpki = "0.21"