diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 1a71a0bc0..636c9e330 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -6,9 +6,9 @@ * Bump minimum supported Rust version to 1.40 * content_length function is removed, and you can set Content-Length by calling no_chunking function [#1439] - * `BodySize::Sized64` variant has been removed. `BodySize::Sized` now receives a `u64` instead of a `usize`. +* Update `base64` dependency to 0.12 ### Fixed diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 894bd44f8..3ddc5181c 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -49,7 +49,7 @@ actix-threadpool = "0.3.1" actix-tls = { version = "2.0.0-alpha.1", optional = true } actix = { version = "0.10.0-alpha.1", optional = true } -base64 = "0.11" +base64 = "0.12" bitflags = "1.2" bytes = "0.5.3" copyless = "0.1.4" diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 67bbc38c5..f501674ee 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -6,6 +6,7 @@ * Implement `std::error::Error` for our custom errors [#1422] * Bump minimum supported Rust version to 1.40 +* Update `base64` dependency to 0.12 [#1422]: https://github.com/actix/actix-web/pull/1422 diff --git a/awc/Cargo.toml b/awc/Cargo.toml index c31c19025..894674c90 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -39,7 +39,7 @@ actix-service = "1.0.1" actix-http = "2.0.0-alpha.3" actix-rt = "1.0.0" -base64 = "0.11" +base64 = "0.12" bytes = "0.5.3" derive_more = "0.99.2" futures-core = { version = "0.3.5", default-features = false } diff --git a/test-server/CHANGES.md b/test-server/CHANGES.md index 1570e36d8..e97ee5d6f 100644 --- a/test-server/CHANGES.md +++ b/test-server/CHANGES.md @@ -7,6 +7,8 @@ * Make `test_server` `async` fn. * Bump minimum supported Rust version to 1.40 * Replace deprecated `net2` crate with `socket2` +* Update `base64` dependency to 0.12 +* Update `env_logger` dependency to 0.7 ## [1.0.0] - 2019-12-13 diff --git a/test-server/Cargo.toml b/test-server/Cargo.toml index ebfbd55cd..f4b02353c 100644 --- a/test-server/Cargo.toml +++ b/test-server/Cargo.toml @@ -39,12 +39,12 @@ actix-server = "1.0.0" actix-testing = "1.0.0" awc = "2.0.0-alpha.1" -base64 = "0.11" +base64 = "0.12" bytes = "0.5.3" futures-core = { version = "0.3.5", default-features = false } http = "0.2.0" log = "0.4" -env_logger = "0.6" +env_logger = "0.7" socket2 = "0.3" serde = "1.0" serde_json = "1.0"