From 603973dedeaf1801a849c17a627a238b2d05dc8a Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 21 May 2020 09:51:58 +0900 Subject: [PATCH] awc: Update `base64` to 0.12 --- awc/CHANGES.md | 1 + awc/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 }