From b1f5aed58287cb01795a099230faa7d2ac734740 Mon Sep 17 00:00:00 2001 From: Daniel Reiter Horn Date: Mon, 11 Feb 2019 18:52:51 -0800 Subject: [PATCH] bump version of brotli-decompressor to return Result for decompressor into_inner --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d131925e..ed9b249d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "brotli" -version = "3.2.1" +version = "3.3.0" authors = ["Daniel Reiter Horn ", "The Brotli Authors"] description = "A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe." license = "BSD-3-Clause/MIT" @@ -27,7 +27,7 @@ incremental=false [dependencies] "alloc-no-stdlib" = {version="2.0"} -"brotli-decompressor" = {version="~2.2", default-features=false} +"brotli-decompressor" = {version="~2.3", default-features=false} "alloc-stdlib" = {version="~0.2", optional=true} "packed_simd" = {version="0.3", optional=true} "sha2" = {version="~0.8", optional=true}