Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
repository = "https://github.com/andrewdavidmackenzie/libproc-rs"
Expand All @@ -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"]
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.

Expand Down
Loading