Cargo Features
[dependencies]
rustix-libc-wrappers = { version = "0.1.0", default-features = false, features = ["std", "all-apis", "process", "io_uring"] }
- default = std
-
The
std
feature is set by default wheneverrustix-libc-wrappers
is added without
somewhere in the dependency tree.default-features = false - std default
-
rustix:
This enables use of std. Disabling this enables
#![no_std]
, and requires Rust 1.77 or newer. - all-apis = io_uring, process
- process all-apis?
-
rustix:
Enable
rustix::process::*
.Affects
rustix-libc-wrappers::process
… - io_uring all-apis?
-
rustix:
Enable
rustix::io_uring::*
(on platforms that support it).Affects
rustix-libc-wrappers::io_uring
…