commit | 23735b26c5fbad1ddab7573a295cc1966784ba13 | [log] [tgz] |
---|---|---|
author | Yunke Cao <[email protected]> | Wed Aug 21 16:16:09 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 21 16:16:09 2024 +0000 |
tree | aa47ef73b9cef7579b603d25f70f611f54e64a5f | |
parent | 6896f3cfe328a6509d8cd7841ea833b92c7379ab [diff] | |
parent | 42da12035e9ba0333957b98adec695046ecf2b06 [diff] |
Enable the inotify feature am: 6fa0141382 am: 42da12035e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/nix/+/3234603 Change-Id: I1b72be2592b0e859a93b482bdc840839c551ff52 Signed-off-by: Automerger Merge Worker <[email protected]>
Nix seeks to provide friendly bindings to various *nix platform APIs (Linux, Darwin, ...). The goal is to not provide a 100% unified interface, but to unify what can be while still providing platform specific APIs.
For many system APIs, Nix provides a safe alternative to the unsafe APIs exposed by the libc crate. This is done by wrapping the libc functionality with types/abstractions that enforce legal/safe usage.
As an example of what Nix provides, examine the differences between what is exposed by libc and nix for the gethostname system call:
// libc api (unsafe, requires handling return code/errno) pub unsafe extern fn gethostname(name: *mut c_char, len: size_t) -> c_int; // nix api (returns a nix::Result<OsString>) pub fn gethostname() -> Result<OsString>;
nix target support consists of three tiers. While nix attempts to support all platforms supported by libc, only some platforms are actively supported due to either technical or manpower limitations. Support for platforms is split into three tiers:
Platforms not listed are supported on a best-effort basis, relying on our users to report any problems.
The following targets are supported by nix
:
nix is supported on Rust 1.69 and higher. Its MSRV will not be changed in the future without bumping the major or minor version.
Contributions are very welcome. Please See CONTRIBUTING for additional details.
Feel free to join us in the nix-rust/nix channel on Gitter to discuss nix
development.
Nix is licensed under the MIT license. See LICENSE for more details.