commit | 9a2c95d28202cd3a8c66db81749a3a6128cc5ffe | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Jan 17 00:22:35 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Jan 17 00:22:35 2024 +0000 |
tree | 433bf4bf96250b2f15312c2150f82d3ea71052dd | |
parent | a5bbc91279b28755aadb64f8a5669b2c0b5e43a9 [diff] | |
parent | d50a5572c10b3a555ba7d7c89e64a82cea2f577e [diff] |
Snap for 11317273 from d50a5572c10b3a555ba7d7c89e64a82cea2f577e to 24Q2-release Change-Id: I166c18b59d08aa5a7a6f17845d84725c6fe6a23d
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.65 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.