summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAndrew Chin <achin@eminence32.net>2019-11-25 16:31:13 -0500
committerAram Drevekenin <aram@poor.dev>2019-11-30 20:15:44 +0100
commit5fd175781029ef6a89904815cf16b8a9e6f7870b (patch)
tree161afc6493677e95a56ba3d47030cfbc36e1f759 /Cargo.toml
parent81bc53a9ce548b70d46c7b17dc37c7a87707f4a5 (diff)
Update procfs dependency
This commit updates procfs to version v0.7. The previous versions of procfs would panic if it encountered a bug or assertion failure. This new version no longer does this (and so is much more friendly), and instead it will simply return an error.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f58f3eb..c909012 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -26,7 +26,7 @@ regex = "1.3.1"
lazy_static = "1.4.0"
[target.'cfg(target_os="linux")'.dependencies]
-procfs = "0.5.3"
+procfs = "0.7"
[dev-dependencies]
insta = "0.11.0"