Cargo Features
[dependencies]
rustix-uring = { version = "0.2.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverrustix-uring
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of bitflags and rustix
rustix:
This enables use of std. Disabling this enables
#![no_std]
, and requires Rust 1.64 or newer.
rustix-uring has 2 features without comments.