From a791aab41825ba0a0f10388583c79c1352f11665 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 15 Dec 2019 13:36:05 +0600 Subject: [PATCH] prep awc release --- awc/CHANGES.md | 5 +++++ awc/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 726a6d666..d9b26e453 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## [1.0.1] - 2019-12-15 + +* Fix compilation with default features off + + ## [1.0.0] - 2019-12-13 * Release diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 26d1e85d2..863b7a1e4 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "1.0.0" +version = "1.0.1" authors = ["Nikolay Kim "] description = "Actix http client." readme = "README.md" @@ -22,7 +22,7 @@ path = "src/lib.rs" features = ["openssl", "rustls", "compress"] [features] -default = [] #"compress"] +default = ["compress"] # openssl openssl = ["open-ssl", "actix-http/openssl"]