1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/awc/Cargo.toml

73 lines
1.9 KiB
TOML
Raw Normal View History

2019-03-26 05:58:01 +01:00
[package]
name = "awc"
version = "2.0.3"
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",
]
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]
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
openssl = ["open-ssl", "actix-http/openssl"]
2019-03-26 05:58:01 +01:00
# rustls
2019-12-05 18:35:43 +01:00
rustls = ["rust-tls", "actix-http/rustls"]
# content-encoding support
compress = ["actix-http/compress"]
2019-03-27 02:46:06 +01:00
2019-03-26 05:58:01 +01:00
[dependencies]
actix-codec = "0.3.0"
2020-09-11 14:50:10 +02:00
actix-service = "1.0.6"
actix-http = "2.2.0"
2019-12-11 14:20:20 +01:00
actix-rt = "1.0.0"
2020-10-19 19:24:22 +02:00
base64 = "0.13"
2019-12-13 07:36:15 +01:00
bytes = "0.5.3"
cfg-if = "1.0"
2019-11-25 12:59:14 +01:00
derive_more = "0.99.2"
2020-05-18 04:46:57 +02:00
futures-core = { version = "0.3.5", 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"
2019-07-01 05:37:03 +02:00
rand = "0.7"
2019-03-26 05:58:01 +01:00
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
open-ssl = { version = "0.10", package = "openssl", optional = true }
2020-08-17 17:28:39 +02:00
rust-tls = { version = "0.18.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }
2019-03-26 05:58:01 +01:00
[dev-dependencies]
2020-09-09 10:20:54 +02:00
actix-connect = { version = "2.0.0", features = ["openssl"] }
2020-09-11 14:50:10 +02:00
actix-web = { version = "3.0.0", features = ["openssl"] }
actix-http = { version = "2.0.0", features = ["openssl"] }
actix-http-test = { version = "2.0.0", features = ["openssl"] }
actix-utils = "2.0.0"
2019-12-11 14:20:20 +01:00
actix-server = "1.0.0"
2020-09-09 10:20:54 +02:00
actix-tls = { version = "2.0.0", features = ["openssl", "rustls"] }
2019-12-20 08:50:07 +01:00
brotli2 = "0.3.2"
flate2 = "1.0.13"
2020-05-18 04:46:57 +02:00
futures-util = { version = "0.3.5", default-features = false }
2020-03-01 02:44:26 +01:00
env_logger = "0.7"
webpki = "0.21"