diff --git a/CHANGELOG.md b/CHANGELOG.md index 11b7f4e5..9682ae7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Changed +- The `libc` crate >= 0.2.151 is required now. + +### Fixed +- Build on Android with an older `libc` crate. ## [0.9.3] - 2023-12-19 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 36b2323c..580105af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" stable_deref_trait = { version = "1.0", optional = true } [target.'cfg(unix)'.dependencies] -libc = "0.2.143" +libc = "0.2.151" [dev-dependencies] tempfile = "3"