2019-03-26 05:58:01 +01:00
|
|
|
[package]
|
|
|
|
name = "awc"
|
2021-01-07 21:02:08 +01:00
|
|
|
version = "3.0.0-beta.1"
|
2019-03-26 05:58:01 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-10-30 03:50:53 +01:00
|
|
|
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
|
2019-03-26 05:58:01 +01:00
|
|
|
readme = "README.md"
|
2019-03-28 21:46:26 +01:00
|
|
|
keywords = ["actix", "http", "framework", "async", "web"]
|
2019-03-26 05:58:01 +01:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
|
|
documentation = "https://docs.rs/awc/"
|
2020-07-22 02:13:10 +02:00
|
|
|
categories = [
|
|
|
|
"network-programming",
|
|
|
|
"asynchronous",
|
|
|
|
"web-programming::http-client",
|
|
|
|
"web-programming::websocket",
|
|
|
|
]
|
2020-07-14 04:19:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-03-26 05:58:01 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "awc"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2019-03-27 02:46:06 +01:00
|
|
|
[package.metadata.docs.rs]
|
2019-12-12 10:08:08 +01:00
|
|
|
features = ["openssl", "rustls", "compress"]
|
2019-03-27 02:46:06 +01:00
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
[features]
|
2019-12-15 08:36:05 +01:00
|
|
|
default = ["compress"]
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
# openssl
|
2019-11-19 04:55:17 +01:00
|
|
|
openssl = ["open-ssl", "actix-http/openssl"]
|
2019-03-26 05:58:01 +01:00
|
|
|
|
2019-07-31 22:02:56 +02:00
|
|
|
# rustls
|
2019-12-05 18:35:43 +01:00
|
|
|
rustls = ["rust-tls", "actix-http/rustls"]
|
2019-07-31 22:02:56 +02:00
|
|
|
|
2019-12-12 10:08:08 +01:00
|
|
|
# content-encoding support
|
|
|
|
compress = ["actix-http/compress"]
|
2019-03-27 02:46:06 +01:00
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
[dependencies]
|
2021-01-04 00:47:04 +01:00
|
|
|
actix-codec = "0.4.0-beta.1"
|
2021-01-09 17:04:19 +01:00
|
|
|
actix-service = "2.0.0-beta.3"
|
2021-01-07 21:02:08 +01:00
|
|
|
actix-http = "3.0.0-beta.1"
|
2021-01-09 17:04:19 +01:00
|
|
|
actix-rt = "2.0.0-beta.2"
|
2019-11-19 04:55:17 +01:00
|
|
|
|
2020-10-19 19:24:22 +02:00
|
|
|
base64 = "0.13"
|
2021-01-04 00:47:04 +01:00
|
|
|
bytes = "1"
|
2020-10-24 22:15:01 +02:00
|
|
|
cfg-if = "1.0"
|
2021-01-07 21:02:08 +01:00
|
|
|
derive_more = "0.99.5"
|
2021-01-04 00:47:04 +01:00
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
2019-03-26 05:58:01 +01:00
|
|
|
log =" 0.4"
|
2019-04-01 20:51:18 +02:00
|
|
|
mime = "0.3"
|
2019-08-13 19:48:11 +02:00
|
|
|
percent-encoding = "2.1"
|
2020-12-23 00:45:31 +01:00
|
|
|
rand = "0.8"
|
2019-03-26 05:58:01 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2020-11-05 17:36:15 +01:00
|
|
|
serde_urlencoded = "0.7"
|
2020-05-07 23:46:42 +02:00
|
|
|
open-ssl = { version = "0.10", package = "openssl", optional = true }
|
2021-01-04 00:47:04 +01:00
|
|
|
rust-tls = { version = "0.19.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-04 00:47:04 +01:00
|
|
|
# TODO: actix is temporary added as dev dep for actix-macro reason.
|
|
|
|
# Can be removed when it does not impact tests.
|
|
|
|
actix = "0.11.0-beta.1"
|
2021-01-07 21:02:08 +01:00
|
|
|
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"] }
|
2021-01-04 00:47:04 +01:00
|
|
|
actix-utils = "3.0.0-beta.1"
|
|
|
|
actix-server = "2.0.0-beta.2"
|
|
|
|
actix-tls = { version = "3.0.0-beta.2", features = ["openssl", "rustls"] }
|
2019-12-20 08:50:07 +01:00
|
|
|
brotli2 = "0.3.2"
|
2019-12-12 10:08:08 +01:00
|
|
|
flate2 = "1.0.13"
|
2021-01-04 00:47:04 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|
2020-03-01 02:44:26 +01:00
|
|
|
env_logger = "0.7"
|
2019-12-12 10:08:08 +01:00
|
|
|
webpki = "0.21"
|