diff --git a/CHANGELOG.md b/CHANGELOG.md index cfbcb5b3..4d1b52fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Dependencies - Bump `thiserror` from 1.0.59 to 1.0.63 ([#564](https://github.com/wcampbell0x2a/backhand/pull/564), [#578](https://github.com/wcampbell0x2a/backhand/pull/578)) -- Bump `libc` from 0.2.154 to 0.2.158 ([#557](https://github.com/wcampbell0x2a/backhand/pull/557), [#592](https://github.com/wcampbell0x2a/backhand/pull/592)) +- Bump `libc` from 0.2.154 to 0.2.159 ([#557](https://github.com/wcampbell0x2a/backhand/pull/557), [#592](https://github.com/wcampbell0x2a/backhand/pull/592), [#616](https://github.com/wcampbell0x2a/backhand/pull/616)) - Bump `clap` from 4.5.4 to 4.5.13 ([#569](https://github.com/wcampbell0x2a/backhand/pull/569), [#574](https://github.com/wcampbell0x2a/backhand/pull/574), [#582](https://github.com/wcampbell0x2a/backhand/pull/582)) - Bump `rustc-hash` from 1.1.0 to 2.0.0 ([#570](https://github.com/wcampbell0x2a/backhand/pull/570)) - Bump `clap_complete` from 4.5.2 to 4.5.13 ([#575](https://github.com/wcampbell0x2a/backhand/pull/575), [#595](https://github.com/wcampbell0x2a/backhand/pull/595)) diff --git a/Cargo.lock b/Cargo.lock index 81e1d660..d784bd18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -801,9 +801,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.158" +version = "0.2.159" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" [[package]] name = "libdeflate-sys" diff --git a/backhand-cli/Cargo.toml b/backhand-cli/Cargo.toml index 40cd2206..daf20acf 100644 --- a/backhand-cli/Cargo.toml +++ b/backhand-cli/Cargo.toml @@ -15,7 +15,7 @@ readme = "../README.md" nix = { version = "0.28.0", default-features = false, features = ["fs"] } clap = { version = "4.5.13", features = ["derive", "wrap_help"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] } -libc = "0.2.158" +libc = "0.2.159" clap_complete = "4.5.13" indicatif = "0.17.8" console = "0.15.8"