reverie/reverie-syscalls/Cargo.toml
Jason White d34189fda6 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
2022-06-30 11:59:56 -07:00

17 lines
373 B
TOML

# @generated by autocargo
[package]
name = "reverie-syscalls"
version = "0.1.0"
authors = ["Meta Platforms"]
edition = "2021"
license = "BSD-2-Clause"
[dependencies]
bitflags = "1.3"
derive_more = "0.99.3"
libc = "0.2.121"
nix = "0.23"
paste = "1.0"
serde = { version = "1.0.136", features = ["derive", "rc"] }
syscalls = { version = "0.6.2", features = ["with-serde"] }