1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 12:15:24 +01:00
actix-web/awc/Cargo.toml

78 lines
2.1 KiB
TOML
Raw Permalink Normal View History

2019-03-25 21:58:01 -07:00
[package]
name = "awc"
version = "0.3.0-alpha.1"
2019-03-25 21:58:01 -07:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-28 13:46:26 -07:00
description = "Actix http client."
2019-03-25 21:58:01 -07:00
readme = "README.md"
2019-03-28 13:46:26 -07:00
keywords = ["actix", "http", "framework", "async", "web"]
2019-03-25 21:58:01 -07:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/awc/"
2019-04-29 20:47:21 -07:00
categories = ["network-programming", "asynchronous",
"web-programming::http-client",
"web-programming::websocket"]
2019-03-25 21:58:01 -07:00
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
2019-11-21 00:35:07 +06:00
workspace = ".."
2019-03-25 21:58:01 -07:00
[lib]
name = "awc"
path = "src/lib.rs"
2019-03-26 18:46:06 -07:00
[package.metadata.docs.rs]
features = ["openssl", "brotli", "flate2-zlib"]
2019-03-26 18:46:06 -07:00
2019-03-25 21:58:01 -07:00
[features]
2019-03-29 21:13:39 -07:00
default = ["brotli", "flate2-zlib"]
2019-03-25 21:58:01 -07:00
# openssl
openssl = ["open-ssl", "actix-http/openssl"]
2019-03-25 21:58:01 -07:00
# rustls
2019-11-22 07:01:05 +06:00
# rustls = ["rust-tls", "actix-http/rustls"]
2019-03-26 18:46:06 -07:00
# brotli encoding, requires c compiler
2019-03-26 20:45:00 -07:00
brotli = ["actix-http/brotli"]
2019-03-26 18:46:06 -07: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-25 21:58:01 -07:00
[dependencies]
actix-codec = "0.2.0-alpha.1"
actix-service = "1.0.0-alpha.1"
actix-http = "0.3.0-alpha.1"
base64 = "0.10.1"
2019-03-25 21:58:01 -07:00
bytes = "0.4"
2019-06-16 22:10:22 +06:00
derive_more = "0.15.0"
futures = "0.3.1"
2019-03-25 21:58:01 -07:00
log =" 0.4"
2019-04-01 11:51:18 -07:00
mime = "0.3"
2019-08-13 10:48:11 -07:00
percent-encoding = "2.1"
2019-07-01 11:37:03 +08:00
rand = "0.7"
2019-03-25 21:58:01 -07:00
serde = "1.0"
serde_json = "1.0"
2019-08-13 10:48:11 -07:00
serde_urlencoded = "0.6.1"
tokio-timer = "0.3.0-alpha.6"
open-ssl = { version="0.10", package="openssl", optional = true }
2019-11-21 00:35:07 +06:00
rust-tls = { version = "0.16.0", package="rustls", optional = true, features = ["dangerous_configuration"] }
2019-03-25 21:58:01 -07:00
[dev-dependencies]
actix-rt = "1.0.0-alpha.1"
2019-11-21 17:36:18 +06:00
actix-connect = { version = "1.0.0-alpha.1", features=["openssl"] }
2019-11-20 23:33:22 +06:00
actix-web = { version = "2.0.0-alpha.1", features=["openssl"] }
actix-http = { version = "0.3.0-alpha.1", features=["openssl"] }
2019-11-19 11:08:03 +06:00
actix-http-test = { version = "0.3.0-alpha.1", features=["openssl"] }
actix-utils = "0.5.0-alpha.1"
2019-11-21 00:35:07 +06:00
actix-server = { version = "0.8.0-alpha.1", features=["openssl"] }
2019-03-28 13:46:26 -07:00
brotli2 = { version="0.3.2" }
flate2 = { version="1.0.2" }
2019-03-26 20:45:00 -07:00
env_logger = "0.6"
2019-07-01 11:37:03 +08:00
rand = "0.7"
tokio-tcp = "0.1"
webpki = { version = "0.21" }