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

89 lines
2.3 KiB
TOML
Raw Normal View History

2019-03-26 05:58:01 +01:00
[package]
name = "awc"
2021-06-19 12:51:20 +02:00
version = "3.0.0-beta.6"
2021-04-02 10:40:36 +02:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"fakeshadow <24548779@qq.com>",
]
2020-10-30 03:50:53 +01:00
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
2019-03-28 21:46:26 +01:00
keywords = ["actix", "http", "framework", "async", "web"]
2020-07-22 02:13:10 +02:00
categories = [
"network-programming",
"asynchronous",
"web-programming::http-client",
"web-programming::websocket",
]
2021-04-17 16:30:31 +02:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web"
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]
2021-02-13 16:08:43 +01:00
# features that docs.rs will build with
features = ["openssl", "rustls", "compress", "cookies"]
2019-03-27 02:46:06 +01:00
2019-03-26 05:58:01 +01:00
[features]
2021-02-13 16:08:43 +01:00
default = ["compress", "cookies"]
2019-03-26 05:58:01 +01:00
# openssl
2021-02-07 04:54:58 +01:00
openssl = ["tls-openssl", "actix-http/openssl"]
2019-03-26 05:58:01 +01:00
# rustls
2021-02-07 04:54:58 +01:00
rustls = ["tls-rustls", "actix-http/rustls"]
# content-encoding support
compress = ["actix-http/compress"]
2019-03-27 02:46:06 +01:00
2021-02-13 16:08:43 +01:00
# cookie parsing and cookie jar
cookies = ["cookie"]
2021-02-13 16:08:43 +01:00
# trust-dns as dns resolver
trust-dns = ["actix-http/trust-dns"]
2019-03-26 05:58:01 +01:00
[dependencies]
2021-04-21 12:14:22 +02:00
actix-codec = "0.4.0"
2021-04-16 21:28:21 +02:00
actix-service = "2.0.0"
2021-06-19 12:51:20 +02:00
actix-http = "3.0.0-beta.7"
2021-02-28 19:17:08 +01:00
actix-rt = { version = "2.1", default-features = false }
2020-10-19 19:24:22 +02:00
base64 = "0.13"
bytes = "1"
cookie = { version = "0.15", features = ["percent-encode"], optional = true }
2021-01-07 21:02:08 +01:00
derive_more = "0.99.5"
futures-core = { version = "0.3.7", default-features = false }
itoa = "0.4"
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"
2021-02-28 19:17:08 +01:00
pin-project-lite = "0.2"
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"
serde_urlencoded = "0.7"
2021-02-07 04:54:58 +01: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 05:58:01 +01:00
[dev-dependencies]
2021-06-19 12:51:20 +02:00
actix-web = { version = "4.0.0-beta.7", features = ["openssl"] }
actix-http = { version = "3.0.0-beta.7", features = ["openssl"] }
2021-04-02 11:03:01 +02:00
actix-http-test = { version = "3.0.0-beta.4", features = ["openssl"] }
2021-04-17 03:07:33 +02:00
actix-utils = "3.0.0"
actix-server = "2.0.0-beta.3"
actix-tls = { version = "3.0.0-beta.5", features = ["openssl", "rustls"] }
actix-test = { version = "0.1.0-beta.2", features = ["openssl", "rustls"] }
2021-01-17 06:19:32 +01:00
2019-12-20 08:50:07 +01:00
brotli2 = "0.3.2"
env_logger = "0.8"
flate2 = "1.0.13"
futures-util = { version = "0.3.7", default-features = false }
2021-01-17 06:19:32 +01:00
rcgen = "0.8"
webpki = "0.21"
[[example]]
name = "client"
required-features = ["rustls"]