Bump zstd from 0.12.0+zstd.1.5.2 to 0.12.1+zstd.1.5.2 (#595)

Bumps [zstd](https://github.com/gyscos/zstd-rs) from 0.12.0+zstd.1.5.2 to 0.12.1+zstd.1.5.2.
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/compare/v0.12.0...v0.12.1)

---
updated-dependencies:
- dependency-name: zstd
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-12-11 14:47:23 +00:00 committed by GitHub
parent 75d2fc4d42
commit e6f969245a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View file

@ -178,7 +178,7 @@ dependencies = [
"url", "url",
"xz2", "xz2",
"zip", "zip",
"zstd 0.12.0+zstd.1.5.2", "zstd 0.12.1+zstd.1.5.2",
] ]
[[package]] [[package]]
@ -2889,9 +2889,9 @@ dependencies = [
[[package]] [[package]]
name = "zstd" name = "zstd"
version = "0.12.0+zstd.1.5.2" version = "0.12.1+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8148aa921e9d53217ab9322f8553bd130f7ae33489db68b381d76137d2e6374" checksum = "5c947d2adc84ff9a59f2e3c03b81aa4128acf28d6ad7d56273f7e8af14e47bea"
dependencies = [ dependencies = [
"zstd-safe 6.0.2+zstd.1.5.2", "zstd-safe 6.0.2+zstd.1.5.2",
] ]

View file

@ -51,7 +51,7 @@ zip = { version = "0.6.3", default-features = false, features = ["deflate", "bzi
# Since zip 0.6.3 depends on zstd 0.11, we can use 0.12.0 here # Since zip 0.6.3 depends on zstd 0.11, we can use 0.12.0 here
# because it uses the same zstd-sys version. # because it uses the same zstd-sys version.
# Otherwise there will be a link conflict. # Otherwise there will be a link conflict.
zstd = { version = "0.12.0", default-features = false } zstd = { version = "0.12.1", default-features = false }
[features] [features]
default = ["static", "rustls"] default = ["static", "rustls"]