2019-03-26 05:58:01 +01:00
|
|
|
[package]
|
|
|
|
name = "awc"
|
2019-12-08 15:22:39 +01:00
|
|
|
version = "1.0.0-alpha.4"
|
2019-03-26 05:58:01 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-03-28 21:46:26 +01:00
|
|
|
description = "Actix http client."
|
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/"
|
2019-04-30 05:47:21 +02:00
|
|
|
categories = ["network-programming", "asynchronous",
|
|
|
|
"web-programming::http-client",
|
|
|
|
"web-programming::websocket"]
|
2019-03-26 05:58:01 +01:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-11-20 19:35:07 +01:00
|
|
|
workspace = ".."
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "awc"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2019-03-27 02:46:06 +01:00
|
|
|
[package.metadata.docs.rs]
|
2019-12-07 16:55:41 +01:00
|
|
|
features = ["openssl", "rustls", "flate2-zlib"]
|
2019-03-27 02:46:06 +01:00
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
[features]
|
2019-12-07 16:55:41 +01:00
|
|
|
default = ["flate2-zlib"]
|
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-03-27 02:46:06 +01:00
|
|
|
# miniz-sys backend for flate2 crate
|
|
|
|
flate2-zlib = ["actix-http/flate2-zlib"]
|
|
|
|
|
|
|
|
# rust backend for flate2 crate
|
|
|
|
flate2-rust = ["actix-http/flate2-rust"]
|
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
[dependencies]
|
2019-12-11 14:20:20 +01:00
|
|
|
actix-codec = "0.2.0"
|
|
|
|
actix-service = "1.0.0"
|
2019-12-08 15:22:39 +01:00
|
|
|
actix-http = "1.0.0-alpha.4"
|
2019-12-11 14:20:20 +01:00
|
|
|
actix-rt = "1.0.0"
|
2019-11-19 04:55:17 +01:00
|
|
|
|
2019-12-05 18:35:43 +01:00
|
|
|
base64 = "0.11"
|
|
|
|
bytes = "0.5.2"
|
2019-11-25 12:59:14 +01:00
|
|
|
derive_more = "0.99.2"
|
2019-11-19 04:55:17 +01:00
|
|
|
futures = "0.3.1"
|
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"
|
2019-08-13 19:48:11 +02:00
|
|
|
serde_urlencoded = "0.6.1"
|
2019-11-19 04:55:17 +01:00
|
|
|
open-ssl = { version="0.10", package="openssl", optional = true }
|
2019-12-05 18:35:43 +01:00
|
|
|
rust-tls = { version = "0.16.0", package="rustls", optional = true, features = ["dangerous_configuration"] }
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-11 14:20:20 +01:00
|
|
|
actix-connect = { version = "1.0.0", features=["openssl"] }
|
2019-12-05 18:35:43 +01:00
|
|
|
actix-web = { version = "2.0.0-alpha.3", features=["openssl"] }
|
2019-12-08 15:22:39 +01:00
|
|
|
actix-http = { version = "1.0.0-alpha.4", features=["openssl"] }
|
2019-12-07 08:00:03 +01:00
|
|
|
actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] }
|
2019-12-11 14:20:20 +01:00
|
|
|
actix-utils = "1.0.0"
|
|
|
|
actix-server = "1.0.0"
|
|
|
|
actix-tls = { version = "1.0.0", features=["openssl", "rustls"] }
|
2019-12-07 16:55:41 +01:00
|
|
|
brotli = "3.3.0"
|
2019-03-28 21:46:26 +01:00
|
|
|
flate2 = { version="1.0.2" }
|
2019-03-27 04:45:00 +01:00
|
|
|
env_logger = "0.6"
|
2019-11-19 04:55:17 +01:00
|
|
|
webpki = { version = "0.21" }
|