commit | cd85a10da456a321c9fe6e7860f182eeead8e88c | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu May 23 23:14:03 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu May 23 23:14:03 2024 +0000 |
tree | a33817c789404600d5d66f85ce1ce73d2e376ab2 | |
parent | 29143ec5d607c7751132b78872af8ac3f0f37a5f [diff] | |
parent | 6973e3589ae193dbdfc91b6580824d2ed78f9a02 [diff] |
Snap for 11881322 from 6973e3589ae193dbdfc91b6580824d2ed78f9a02 to 24Q3-release Change-Id: I3e06420e5cc746a6830dbc1727ed6b90ff4e163d
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.