Update version to zstd=0.8.0 / zstd-safe=4.0.0

This commit is contained in:
Alexandre Bury 2021-05-03 09:25:02 -07:00
parent 17b984195e
commit 2dead48d00
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ categories = ["compression", "api-bindings"]
license = "MIT" license = "MIT"
name = "zstd" name = "zstd"
repository = "https://github.com/gyscos/zstd-rs" repository = "https://github.com/gyscos/zstd-rs"
version = "0.7.0+zstd.1.4.9" version = "0.8.0+zstd.1.4.9"
exclude = ["assets/*.zst"] exclude = ["assets/*.zst"]
readme = "Readme.md" readme = "Readme.md"
edition = "2018" edition = "2018"
@ -19,7 +19,7 @@ features = ["experimental"]
travis-ci = { repository = "gyscos/zstd-rs" } travis-ci = { repository = "gyscos/zstd-rs" }
[dependencies] [dependencies]
zstd-safe = { path = "./zstd-safe", version = "=3.1.0", default-features = false, features=["std"]} zstd-safe = { path = "./zstd-safe", version = "=4.0.0", default-features = false, features=["std"]}
tokio-io = { version = "0.1", optional = true } tokio-io = { version = "0.1", optional = true }
futures = { version = "0.1", optional = true } futures = { version = "0.1", optional = true }

View file

@ -24,7 +24,7 @@ $ cargo add zstd
# Cargo.toml # Cargo.toml
[dependencies] [dependencies]
zstd = "0.5" zstd = "0.8"
``` ```
## 2 - Usage ## 2 - Usage

View file

@ -2,7 +2,7 @@
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"] authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
name = "zstd-safe" name = "zstd-safe"
build = "build.rs" build = "build.rs"
version = "3.1.0+zstd.1.4.9" version = "4.0.0+zstd.1.4.9"
description = "Safe low-level bindings for the zstd compression library." description = "Safe low-level bindings for the zstd compression library."
keywords = ["zstd", "zstandard", "compression"] keywords = ["zstd", "zstandard", "compression"]
categories = ["api-bindings", "compression"] categories = ["api-bindings", "compression"]