diff --git a/Cargo.toml b/Cargo.toml index c99ca825..adc66d12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libproc" -version = "0.14.10" +version = "0.14.11" description = "A library to get information about running processes - for Mac OS X and Linux" authors = ["Andrew Mackenzie "] repository = "https://github.com/andrewdavidmackenzie/libproc-rs" @@ -11,23 +11,23 @@ edition = "2018" rust-version = "1.72" [dependencies] -errno = "0.3.0" -libc = "^0.2.62" +errno = "0.3.14" +libc = "^0.2.176" [lib] name = "libproc" path = "src/lib.rs" [build-dependencies] -bindgen = { version = "0.72.0", default-features = false, features = ["runtime"] } +bindgen = { version = "0.72.1", default-features = false, features = ["runtime"] } # NOTE: This assumes that there is a procfs compatible FS in redox and the procfs crate -# supports it. It's quite probably that neither of those two things ever happen. +# supports it. It's quite probably that neither of those two things will ever happen. # But making this assumption for now so that everything compiles at least for redox [target.'cfg(any(target_os = "linux", target_os = "redox", target_os = "android"))'.dev-dependencies] procfs = "0.18.0" tempfile = "3.3.0" -# Build docs for macos and linux +# Build docs for macOS and linux [package.metadata.docs.rs] targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu"] \ No newline at end of file diff --git a/README.md b/README.md index 4dd5edc6..0ba2593f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This is a library for getting information about running processes for Mac OS X a Add it to your project's `Cargo.toml`: ```toml -libproc = "0.14.4" +libproc = "0.14.11" ``` And then use it in your code: @@ -29,6 +29,7 @@ NOTE: `master` branch (code and docs) can differ from those docs prior to a new The minimum rust version required, by version: * libproc-rs: 0.14.6 --> 1.74.1 * libproc-rs: 0.14.7 --> 1.72.0 +* libproc-rs: 0.14.11 --> 1.72.0 This is tested in CI and must pass.