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

69 lines
1.7 KiB
TOML
Raw Normal View History

2019-03-26 04:58:01 +00:00
[package]
name = "awc"
version = "1.0.0"
2019-03-26 04:58:01 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-28 20:46:26 +00:00
description = "Actix http client."
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/"
2019-04-30 03:47:21 +00:00
categories = ["network-programming", "asynchronous",
"web-programming::http-client",
"web-programming::websocket"]
2019-03-26 04:58:01 +00:00
license = "MIT/Apache-2.0"
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:28:54 +00:00
default = [] #"compress"]
2019-03-26 04:58:01 +00:00
# openssl
openssl = ["open-ssl", "actix-http/openssl"]
2019-03-26 04:58:01 +00:00
# rustls
2019-12-05 17:35:43 +00:00
rustls = ["rust-tls", "actix-http/rustls"]
# content-encoding support
compress = ["actix-http/compress"]
2019-03-27 01:46:06 +00:00
2019-03-26 04:58:01 +00:00
[dependencies]
2019-12-11 13:20:20 +00:00
actix-codec = "0.2.0"
actix-service = "1.0.0"
actix-http = "1.0.0"
2019-12-11 13:20:20 +00:00
actix-rt = "1.0.0"
2019-12-05 17:35:43 +00:00
base64 = "0.11"
2019-12-13 06:36:15 +00:00
bytes = "0.5.3"
2019-11-25 11:59:14 +00:00
derive_more = "0.99.2"
2019-12-13 05:24:57 +00:00
futures-core = "0.3.1"
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"
2019-07-01 03:37:03 +00:00
rand = "0.7"
2019-03-26 04:58:01 +00:00
serde = "1.0"
serde_json = "1.0"
2019-08-13 17:48:11 +00:00
serde_urlencoded = "0.6.1"
open-ssl = { version="0.10", package="openssl", optional = true }
2019-12-05 17:35:43 +00:00
rust-tls = { version = "0.16.0", package="rustls", optional = true, features = ["dangerous_configuration"] }
2019-03-26 04:58:01 +00:00
[dev-dependencies]
2019-12-15 07:28:54 +00:00
actix-connect = { version = "1.0.1", features=["openssl"] }
2019-12-13 06:10:45 +00:00
actix-web = { version = "2.0.0-alpha.5", features=["openssl"] }
actix-http = { version = "1.0.0", features=["openssl"] }
2019-12-13 06:10:45 +00:00
actix-http-test = { version = "1.0.0", features=["openssl"] }
actix-utils = "1.0.3"
2019-12-11 13:20:20 +00:00
actix-server = "1.0.0"
actix-tls = { version = "1.0.0", features=["openssl", "rustls"] }
brotli = "3.3.0"
flate2 = "1.0.13"
2019-12-13 05:24:57 +00:00
futures = "0.3.1"
2019-03-27 03:45:00 +00:00
env_logger = "0.6"
webpki = "0.21"