[package] name = "awc" version = "0.2.7" authors = ["Nikolay Kim "] description = "Actix http client." readme = "README.md" keywords = ["actix", "http", "framework", "async", "web"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" documentation = "https://docs.rs/awc/" categories = ["network-programming", "asynchronous", "web-programming::http-client", "web-programming::websocket"] license = "MIT/Apache-2.0" exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] edition = "2018" workspace = ".." [lib] name = "awc" path = "src/lib.rs" [package.metadata.docs.rs] features = ["ssl", "brotli", "flate2-zlib"] [features] default = ["brotli", "flate2-zlib"] # openssl ssl = ["openssl", "actix-http/ssl"] # rustls rust-tls = ["rustls", "actix-http/rust-tls"] # brotli encoding, requires c compiler brotli = ["actix-http/brotli"] # miniz-sys backend for flate2 crate flate2-zlib = ["actix-http/flate2-zlib"] # rust backend for flate2 crate flate2-rust = ["actix-http/flate2-rust"] [dependencies] actix-codec = "0.1.2" actix-service = "0.4.1" actix-http = "0.2.10" base64 = "0.10.1" bytes = "0.4" derive_more = "0.15.0" futures = "0.1.25" log =" 0.4" mime = "0.3" percent-encoding = "2.1" rand = "0.7" serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.6.1" tokio-timer = "0.2.8" openssl = { version="0.10", optional = true } rustls = { version = "0.15.2", optional = true } [dev-dependencies] actix-rt = "0.2.2" actix-web = { version = "1.0.0", features=["ssl"] } actix-http = { version = "0.2.10", features=["ssl"] } actix-http-test = { version = "0.2.0", features=["ssl"] } actix-utils = "0.4.1" actix-server = { version = "0.6.0", features=["ssl", "rust-tls"] } brotli2 = { version="0.3.2" } flate2 = { version="1.0.2" } env_logger = "0.6" rand = "0.7" tokio-tcp = "0.1" webpki = "0.19" rustls = { version = "0.15.2", features = ["dangerous_configuration"] }