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
This commit is contained in:
Huapeng Zhou 2022-03-31 00:26:06 -07:00 committed by Facebook GitHub Bot
parent e467c37695
commit 413542a24f
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ libc = "0.2.121"
nix = "0.23"
serde = { version = "1.0.126", features = ["derive", "rc"] }
syscalls = { version = "0.4.2", features = ["with-serde"] }
thiserror = "1.0.29"
thiserror = "1.0.30"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
[dev-dependencies]

View file

@ -26,7 +26,7 @@ procfs = "0.9"
raw-cpuid = "9.0"
reverie = { version = "0.1.0", path = "../reverie" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
thiserror = "1.0.29"
thiserror = "1.0.30"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tracing = "0.1.32"

View file

@ -26,5 +26,5 @@ raw-cpuid = "9.0"
reverie-process = { version = "0.1.0", path = "../reverie-process" }
reverie-syscalls = { version = "0.1.0", path = "../reverie-syscalls" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
thiserror = "1.0.29"
thiserror = "1.0.30"
typed-arena = "2"