Skip to content

Commit 9c5b669

Browse files
Update errno, libc and bindget dependencies to latest patch versions. (#167)
* Update errno, libc and bindget dependencies to latest patch versions. * Fix typos in comments in Cargo.toml * Bump version number prior to next release * Update version number where used in readme to match * Add rust version for latest release version in README.md
1 parent c5928e0 commit 9c5b669

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libproc"
3-
version = "0.14.10"
3+
version = "0.14.11"
44
description = "A library to get information about running processes - for Mac OS X and Linux"
55
authors = ["Andrew Mackenzie <[email protected]>"]
66
repository = "https://github.com/andrewdavidmackenzie/libproc-rs"
@@ -11,23 +11,23 @@ edition = "2018"
1111
rust-version = "1.72"
1212

1313
[dependencies]
14-
errno = "0.3.0"
15-
libc = "^0.2.62"
14+
errno = "0.3.14"
15+
libc = "^0.2.176"
1616

1717
[lib]
1818
name = "libproc"
1919
path = "src/lib.rs"
2020

2121
[build-dependencies]
22-
bindgen = { version = "0.72.0", default-features = false, features = ["runtime"] }
22+
bindgen = { version = "0.72.1", default-features = false, features = ["runtime"] }
2323

2424
# NOTE: This assumes that there is a procfs compatible FS in redox and the procfs crate
25-
# supports it. It's quite probably that neither of those two things ever happen.
25+
# supports it. It's quite probably that neither of those two things will ever happen.
2626
# But making this assumption for now so that everything compiles at least for redox
2727
[target.'cfg(any(target_os = "linux", target_os = "redox", target_os = "android"))'.dev-dependencies]
2828
procfs = "0.18.0"
2929
tempfile = "3.3.0"
3030

31-
# Build docs for macos and linux
31+
# Build docs for macOS and linux
3232
[package.metadata.docs.rs]
3333
targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a library for getting information about running processes for Mac OS X a
66

77
Add it to your project's `Cargo.toml`:
88
```toml
9-
libproc = "0.14.4"
9+
libproc = "0.14.11"
1010
```
1111

1212
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
2929
The minimum rust version required, by version:
3030
* libproc-rs: 0.14.6 --> 1.74.1
3131
* libproc-rs: 0.14.7 --> 1.72.0
32+
* libproc-rs: 0.14.11 --> 1.72.0
3233

3334
This is tested in CI and must pass.
3435

0 commit comments

Comments
 (0)