mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-23 05:06:23 +00:00
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
This commit is contained in:
parent
884cba2bb0
commit
d34189fda6
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] }
|
||||||
libc = "0.2.121"
|
libc = "0.2.121"
|
||||||
nix = "0.23"
|
nix = "0.23"
|
||||||
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
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"
|
thiserror = "1.0.30"
|
||||||
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
|
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@ libc = "0.2.121"
|
||||||
nix = "0.23"
|
nix = "0.23"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
||||||
syscalls = { version = "0.6.1", features = ["with-serde"] }
|
syscalls = { version = "0.6.2", features = ["with-serde"] }
|
||||||
|
|
Loading…
Reference in a new issue