Update dependencies

This commit is contained in:
Chris Hennick 2023-04-29 16:53:37 -07:00
parent 23a1b3d9f7
commit 389bd85754
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 14 additions and 8 deletions

View file

@ -51,3 +51,9 @@
### Fixed
- Fixed an issue that prevented `ZipWriter` from implementing `Send`.
## [0.6.10]
### Changed
- Updated dependency versions.

View file

@ -14,24 +14,24 @@ edition = "2021"
[dependencies]
aes = { version = "0.8.2", optional = true }
byteorder = "1.4.3"
bzip2 = { version = "0.4.3", optional = true }
bzip2 = { version = "0.4.4", optional = true }
constant_time_eq = { version = "0.2.5", optional = true }
crc32fast = "1.3.2"
flate2 = { version = "1.0.23", default-features = false, optional = true }
flate2 = { version = "1.0.26", default-features = false, optional = true }
hmac = { version = "0.12.1", optional = true, features = ["reset"] }
pbkdf2 = {version = "0.12.1", optional = true }
sha1 = {version = "0.10.1", optional = true }
time = { version = "0.3.7", optional = true, default-features = false, features = ["std"] }
sha1 = {version = "0.10.5", optional = true }
time = { version = "0.3.20", optional = true, default-features = false, features = ["std"] }
zstd = { version = "0.12.3", optional = true }
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
crossbeam-utils = "0.8.8"
crossbeam-utils = "0.8.15"
[dev-dependencies]
bencher = "0.1.5"
getrandom = "0.2.5"
walkdir = "2.3.2"
time = { version = "0.3.7", features = ["formatting", "macros"] }
getrandom = "0.2.9"
walkdir = "2.3.3"
time = { version = "0.3.20", features = ["formatting", "macros"] }
[features]
aes-crypto = [ "aes", "constant_time_eq", "hmac", "pbkdf2", "sha1" ]