From d34189fda6b9c2d0d4136c43bd5abe738c265528 Mon Sep 17 00:00:00 2001 From: Jason White Date: Thu, 30 Jun 2022 11:59:56 -0700 Subject: [PATCH] third-party/rust: Update syscalls crate 0.6.1 -> 0.6.2 Summary: From the changelog: - Added `SysnoSet` for constructing sets of syscalls. It uses a bitset under the hood and provides constant-time lookup and insertion of `Sysno`s. - Fixed `Sysno::len()` returning the wrong value for architectures with large syscall offsets. - Deprecated `Sysno::len()`. Use `Sysno::table_size()` instead. This will be removed in the next major version. Differential Revision: D37556871 fbshipit-source-id: a287f2146a0776e6f0459a08b43a1d5a92bb6176 --- reverie-process/Cargo.toml | 2 +- reverie-syscalls/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index 0048a82..29be68e 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -15,7 +15,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] } libc = "0.2.121" nix = "0.23" serde = { version = "1.0.136", features = ["derive", "rc"] } -syscalls = { version = "0.6.1", features = ["with-serde"] } +syscalls = { version = "0.6.2", features = ["with-serde"] } thiserror = "1.0.30" tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } diff --git a/reverie-syscalls/Cargo.toml b/reverie-syscalls/Cargo.toml index 9cbdcb3..27a2000 100644 --- a/reverie-syscalls/Cargo.toml +++ b/reverie-syscalls/Cargo.toml @@ -14,4 +14,4 @@ libc = "0.2.121" nix = "0.23" paste = "1.0" serde = { version = "1.0.136", features = ["derive", "rc"] } -syscalls = { version = "0.6.1", features = ["with-serde"] } +syscalls = { version = "0.6.2", features = ["with-serde"] }