commit | 6973e3589ae193dbdfc91b6580824d2ed78f9a02 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed May 22 23:28:09 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed May 22 23:28:09 2024 +0000 |
tree | a33817c789404600d5d66f85ce1ce73d2e376ab2 | |
parent | 8aaeb4c6628c4dd379c3be756d13b35a2800f3c4 [diff] | |
parent | 173bfdb32dc438701c4c63d368d0155a2128021a [diff] |
Update Android.bp by running cargo_embargo am: cf63a8964a am: 173bfdb32d Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/nix/+/3093433 Change-Id: I952ba83a2caafb2f8fc2f4af127e38f8d6c2f16b 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.