commit | 5dbd53ff5d035f81b092e6aa4d80ef9b51a93fdb | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Mar 16 22:41:51 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Mar 16 22:41:51 2022 +0000 |
tree | f5a291c2107b5c6a507c4da2dbb87b1bcc61884c | |
parent | fc24c4f3545df91a58ce71ec5611cb78b46bed75 [diff] | |
parent | 78cc28b790580acf7d143146e2c8f384c379aaf8 [diff] |
Snap for 8310876 from 78cc28b790580acf7d143146e2c8f384c379aaf8 to mainline-adservices-release Change-Id: I97cb37ec9c075f38f8d31bf55baf469e04579c13
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
requires Rust 1.41.0 or newer.
To use nix
, add this to your Cargo.toml
:
[dependencies] nix = "0.22.1"
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.