Skip to content

Commit

Permalink
bump version of brotli-decompressor to return Result<Write,Write> for…
Browse files Browse the repository at this point in the history
… decompressor into_inner
  • Loading branch information
danielrh committed Feb 12, 2019
1 parent b18bb24 commit b1f5aed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brotli"
version = "3.2.1"
version = "3.3.0"
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "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"
Expand All @@ -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}
Expand Down

0 comments on commit b1f5aed

Please sign in to comment.