commit | 1b4ad499120253bd213962e7b6f3ba117a647ea9 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Tue Nov 01 21:32:15 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Tue Nov 01 21:32:15 2022 +0000 |
tree | fb2abcd53c7bec252defd92f2b61bb3ddff8949d | |
parent | c32132e58e9b957663e0ac0c11dad83e5baee00b [diff] | |
parent | 1e5ff32f02227c72fe2e6f18fe9cfb4f86caae44 [diff] |
Snap for 9239618 from 1e5ff32f02227c72fe2e6f18fe9cfb4f86caae44 to tm-platform-release Change-Id: I816a5414572693b0c7c7ac524a7fd9f71b100109
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<CStr>) pub fn gethostname<'a>(buffer: &'a mut [u8]) -> Result<&'a CStr>;
nix target support consists of two 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:
The following targets are supported by nix
:
Tier 1:
Tier 2:
Tier 3:
nix is supported on Rust 1.46.0 and higher. It's 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.