summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHuapeng Zhou <hzhou@fb.com>2022-03-31 00:26:06 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2022-03-31 00:26:06 -0700
commit3da14b2c470cd80646340b64cb3b4beb90aa9743 (patch)
treeeee4ce577603303dbd38442e3ba84e79d49118fb
parent36cc41491b1fe64c852b3884a4caf3bb099d6b90 (diff)
rust: update thiserror to 1.0.30
Summary: Needed to import [cloud-hypervisor](https://github.com/cloud-hypervisor/cloud-hypervisor/blob/main/Cargo.toml#L31). Reviewed By: dtolnay Differential Revision: D34437972 fbshipit-source-id: 9f22bb1fde83308a319f40e138d9ab7f180c7fa0
-rw-r--r--below/cgroupfs/Cargo.toml2
-rw-r--r--below/procfs/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/below/cgroupfs/Cargo.toml b/below/cgroupfs/Cargo.toml
index fe73c6af..741568c9 100644
--- a/below/cgroupfs/Cargo.toml
+++ b/below/cgroupfs/Cargo.toml
@@ -14,7 +14,7 @@ license = "Apache-2.0"
nix = "0.23"
openat = "0.1.21"
serde = { version = "1.0.126", features = ["derive", "rc"] }
-thiserror = "1.0.29"
+thiserror = "1.0.30"
[dev-dependencies]
tempfile = "3.2"
diff --git a/below/procfs/Cargo.toml b/below/procfs/Cargo.toml
index 1ee4ff75..3bf3d90d 100644
--- a/below/procfs/Cargo.toml
+++ b/below/procfs/Cargo.toml
@@ -16,7 +16,7 @@ libc = "0.2.121"
nix = "0.23"
openat = "0.1.21"
serde = { version = "1.0.126", features = ["derive", "rc"] }
-thiserror = "1.0.29"
+thiserror = "1.0.30"
threadpool = "1.8.1"
[dev-dependencies]