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
This commit is contained in:
Andres Suarez 2022-09-27 15:18:58 -07:00 committed by Facebook GitHub Bot
parent 90da155f18
commit 42214f8ec2
5 changed files with 7 additions and 7 deletions

View file

@ -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" }

View file

@ -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]

View file

@ -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"

View file

@ -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"

View file

@ -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"