third-party/rust: Update syscalls crate 0.5 -> 0.6

Summary:
Changelog:
 * Removed `build.rs` and switched to Rust's inline assembly syntax. This should enable better codegen, including the ability to have syscalls get inlined.
 * **Breaking**: Architectures besides `arm`, `x86`, and `x86-64` now require nightly.
 * **Breaking**: Removed top-level `SYS_` constants. Just use the `Sysno` enum instead.

Reviewed By: johnhurt

Differential Revision: D36606892

fbshipit-source-id: 9d20addfec65fa712b25d9449ec6e414187565ca
This commit is contained in:
Jason White 2022-05-24 09:29:52 -07:00 committed by Facebook GitHub Bot
parent 1e5ed86ae1
commit 011e521c08
2 changed files with 2 additions and 2 deletions

View file

@ -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.5", features = ["with-serde"] }
syscalls = { version = "0.6", features = ["with-serde"] }
thiserror = "1.0.30"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }

View file

@ -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.5", features = ["with-serde"] }
syscalls = { version = "0.6", features = ["with-serde"] }