From 42214f8ec26d9438cb80c0d55d7ae00c2cf0bc98 Mon Sep 17 00:00:00 2001 From: Andres Suarez Date: Tue, 27 Sep 2022 15:18:58 -0700 Subject: [PATCH] update to rust 1.64.0 Summary: https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html Reviewed By: diliop, dtolnay Differential Revision: D39825734 fbshipit-source-id: 4a789f2c24707fbc6a14b506448d405d5a60a53d --- reverie-examples/Cargo.toml | 2 +- reverie-process/Cargo.toml | 2 +- reverie-ptrace/Cargo.toml | 4 ++-- reverie/Cargo.toml | 4 ++-- safeptrace/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/reverie-examples/Cargo.toml b/reverie-examples/Cargo.toml index 86fac35..68f6c06 100644 --- a/reverie-examples/Cargo.toml +++ b/reverie-examples/Cargo.toml @@ -49,7 +49,7 @@ name = "strace_minimal" path = "strace_minimal.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" nix = "0.23" reverie = { version = "0.1.0", path = "../reverie" } reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" } diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index daa6c5e..7e93e22 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -16,7 +16,7 @@ libc = "0.2.132" nix = "0.23" serde = { version = "1.0.136", features = ["derive", "rc"] } syscalls = { version = "0.6.6", features = ["serde"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } [dev-dependencies] diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index bf8b8ae..bb273ca 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" license = "BSD-2-Clause" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" async-trait = "0.1.56" bincode = "1.3.3" bytes = { version = "1.1", features = ["serde"] } @@ -25,7 +25,7 @@ raw-cpuid = "10.6.0" reverie = { version = "0.1.0", path = "../reverie" } safeptrace = { version = "0.1.0", path = "../safeptrace" } serde = { version = "1.0.136", features = ["derive", "rc"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" 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.35" diff --git a/reverie/Cargo.toml b/reverie/Cargo.toml index b3eebfc..dfa38b7 100644 --- a/reverie/Cargo.toml +++ b/reverie/Cargo.toml @@ -9,7 +9,7 @@ license = "BSD-2-Clause" [dependencies] addr2line = "0.17" -anyhow = "1.0.56" +anyhow = "1.0.65" async-trait = "0.1.56" bitflags = "1.3" byteorder = "1.3" @@ -26,5 +26,5 @@ reverie-process = { version = "0.1.0", path = "../reverie-process" } reverie-syscalls = { version = "0.1.0", path = "../reverie-syscalls" } serde = { version = "1.0.136", features = ["derive", "rc"] } syscalls = { version = "0.6.6", features = ["serde"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" typed-arena = "2" diff --git a/safeptrace/Cargo.toml b/safeptrace/Cargo.toml index 67a6091..7720aaa 100644 --- a/safeptrace/Cargo.toml +++ b/safeptrace/Cargo.toml @@ -17,7 +17,7 @@ parking_lot = { version = "0.11.2", features = ["send_guard"] } reverie-process = { version = "0.1.0", path = "../reverie-process" } reverie-syscalls = { version = "0.1.0", path = "../reverie-syscalls" } syscalls = { version = "0.6.6", features = ["serde"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" [dev-dependencies] quickcheck = "1.0"