Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

- Added a `zip-all-codecs` feature that restores `zip`'s full codec set.

### Changed

- `zip` is now pulled with `default-features = false` and only the `deflate` and `time` features. Its default features enable every codec it supports, of which only deflate is needed to extract the archives this crate handles; enable `zip-all-codecs` to get the others back.

## [v0.10.1](https://github.com/epwalsh/rust-cached-path/releases/tag/v0.10.1) - 2026-03-04

### Changed
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ glob = "0.3"
thiserror = "2.0"
flate2 = "1.0"
tar = "0.4"
zip = "8.0"
zip = { version = "8.0", default-features = false, features = ["deflate", "time"] }
indicatif = { version = "0.18.0", optional = true }
env_logger = { version = "0.11", optional = true }
structopt = { version = "0.3", optional = true }
Expand All @@ -50,6 +50,7 @@ build-binary = ["env_logger", "structopt", "color-eyre", "progress-bar"]
rustls-tls = ["reqwest/rustls-tls"]
default-tls = ["reqwest/default-tls"]
lzma = ["lzma-rs"]
zip-all-codecs = ["zip/default"]
progress-bar = ["indicatif"]

[dev-dependencies]
Expand Down
Loading