From 83914279050de378e95abc89415628fb468b1ca8 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 21 May 2020 09:51:32 +0900 Subject: [PATCH] http: Update `base64` to 0.12 --- actix-http/CHANGES.md | 2 +- actix-http/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"