diff --git a/CHANGELOG.md b/CHANGELOG.md index dad2816b1..3e5a17783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ Categories Used: ### New Features +- Add PPMd support for ZIP archives. + ### Improvements ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6264d5e71..3b945d9e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2352,6 +2352,7 @@ dependencies = [ "indexmap", "memchr", "pbkdf2", + "ppmd-rust", "sha1", "time", "typed-path", diff --git a/Cargo.toml b/Cargo.toml index e510c9020..6b5d22d86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,6 +46,7 @@ unrar = { package = "unrar-ng", version = "0.7.6", optional = true } zip = { version = "8.6.0", default-features = false, features = [ "time", "aes-crypto", + "ppmd", ] } zstd = { version = "0.13.3", default-features = false, features = ["zstdmt"] }