From bfbac4f875f656dc83c3227d4fb85a4e5887751a Mon Sep 17 00:00:00 2001 From: simlay Date: Thu, 6 Jun 2019 20:34:30 -0700 Subject: [PATCH] Upgraded actix-web dependency and set default-features to false (#900) --- actix-files/CHANGES.md | 4 ++++ actix-files/Cargo.toml | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index c7749457..862a5944 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.2] - 2019-06-06 + +* Fix ring dependency from actix-web default features for #741. + ## [0.1.1] - 2019-06-01 * Static files are incorrectly served as both chunked and with length #812 diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index 9d6b0f48..b1428a22 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-files" -version = "0.1.1" +version = "0.1.2" authors = ["Nikolay Kim "] description = "Static files support for actix web." readme = "README.md" @@ -18,7 +18,7 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = "1.0.0-rc" +actix-web = { version = "1.0.0", default-features = false } actix-http = "0.2.3" actix-service = "0.4.0" bitflags = "1" @@ -32,4 +32,4 @@ percent-encoding = "1.0" v_htmlescape = "0.4" [dev-dependencies] -actix-web = { version = "1.0.0-rc", features=["ssl"] } +actix-web = { version = "1.0.0", features=["ssl"] }