commit | 13cf15a9c57d9bae4c408932965052411c4c1291 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Aug 21 23:13:47 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Aug 21 23:13:47 2024 +0000 |
tree | aa47ef73b9cef7579b603d25f70f611f54e64a5f | |
parent | ddf2bed496cfb6d3c2027de7584f23efebc7b15d [diff] | |
parent | 23735b26c5fbad1ddab7573a295cc1966784ba13 [diff] |
Snap for 12260156 from 23735b26c5fbad1ddab7573a295cc1966784ba13 to 24Q4-release Change-Id: Ibc124f50f926a2f4dad364577b20ef08e31f1e5a
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.