diff --git a/CHANGELOG.md b/CHANGELOG.md index 32890187..ed45eb65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump `dangoslen/dependabot-changelog-helper` from 3.7.0 to 3.8.0 ([#461](https://github.com/wcampbell0x2a/backhand/pull/461)) - Bump `thiserror` from 1.0.56 to 1.0.57 ([#476](https://github.com/wcampbell0x2a/backhand/pull/476)) - Bump `indicatif` from 0.17.7 to 0.17.8 ([#477](https://github.com/wcampbell0x2a/backhand/pull/477)) +- Bump `libdeflater` from 1.19.0 to 1.19.2 ([#486](https://github.com/wcampbell0x2a/backhand/pull/486)) ## [v0.14.2] - 2024-01-16 ### `backhand` diff --git a/Cargo.lock b/Cargo.lock index 4c5c5101..e57496dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,18 +786,19 @@ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libdeflate-sys" -version = "1.19.0" +version = "1.19.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67921a7f85100c1559efc3d1c7c472091b7da05f304b4bbd5356f075e97f1cc2" +checksum = "b7654050a14083995afdf189c4d895b59bc6c8195407c24db4df4c3878b3679d" dependencies = [ "cc", + "pkg-config", ] [[package]] name = "libdeflater" -version = "1.19.0" +version = "1.19.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a31b22f662350ec294b13859f935aea772ba7b2bc8776269f4a5627308eab7d" +checksum = "6ae43f79441cf19e744fba2aa762e4b6a9016970137e67d3a45eec96ed11bb27" dependencies = [ "libdeflate-sys", ] diff --git a/backhand-test/Cargo.toml b/backhand-test/Cargo.toml index 42320ffa..c18154c1 100644 --- a/backhand-test/Cargo.toml +++ b/backhand-test/Cargo.toml @@ -12,7 +12,7 @@ tempfile = "3.9.0" test-assets = { git = "https://github.com/wcampbell0x2a/test-assets", branch = "replace-curl-ureq" } test-log = { version = "0.2.14", features = ["trace"] } tracing = "0.1.40" -libdeflater = "1.19.0" +libdeflater = "1.19.2" env_logger = "0.10.2" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] } nix = { version = "0.27.1", default-features = false, features = ["fs"] } diff --git a/backhand/Cargo.toml b/backhand/Cargo.toml index e14f4d54..8ae4c671 100644 --- a/backhand/Cargo.toml +++ b/backhand/Cargo.toml @@ -46,7 +46,7 @@ assert_cmd = { version = "2.0.13", features = ["color", "color-auto"] } dir-diff = { git = "https://github.com/wcampbell0x2a/dir-diff", branch = "add-checking-permissions" } tempfile = "3.9.0" criterion = "0.5" -libdeflater = "1.19.0" +libdeflater = "1.19.2" [[bench]] name = "benchmark"