2014-08-17 01:45:34 +00:00
|
|
|
# Rust bindings to *nix APIs
|
2014-08-07 20:02:28 +00:00
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
[![Build Status](https://travis-ci.org/nix-rust/nix.svg?branch=master)](https://travis-ci.org/nix-rust/nix)
|
|
|
|
[![crates.io](http://meritbadge.herokuapp.com/nix)](https://crates.io/crates/nix)
|
|
|
|
|
2016-12-03 13:36:47 +00:00
|
|
|
[Documentation (Releases)](https://docs.rs/nix/)
|
|
|
|
|
|
|
|
[Documentation (Development)](https://nix-rust.github.io/nix/nix/index.html)
|
2016-07-10 06:27:13 +00:00
|
|
|
|
|
|
|
Nix seeks to provide friendly bindings to various *nix platform APIs (Linux, Darwin,
|
2015-02-21 00:24:42 +00:00
|
|
|
...). The goal is to not provide a 100% unified interface, but to unify
|
|
|
|
what can be while still providing platform specific APIs.
|
2014-08-17 01:45:34 +00:00
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
For many system APIs, Nix provides a safe alternative to the unsafe APIs
|
|
|
|
exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by
|
|
|
|
wrapping the libc functionality with types/abstractions that enforce legal/safe
|
|
|
|
usage.
|
2015-05-28 22:17:49 +00:00
|
|
|
|
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
As an example of what Nix provides, examine the differences between what is
|
|
|
|
exposed by libc and nix for the
|
|
|
|
[gethostname](http://man7.org/linux/man-pages/man2/gethostname.2.html) system
|
|
|
|
call:
|
2015-05-28 22:17:49 +00:00
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
```rust,ignore
|
|
|
|
// 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)
|
|
|
|
pub fn gethostname(name: &mut [u8]) -> Result<()>;
|
|
|
|
```
|
2014-08-07 20:02:28 +00:00
|
|
|
|
2017-04-15 19:12:33 +00:00
|
|
|
## Supported Platforms
|
|
|
|
|
2017-04-17 22:16:22 +00:00
|
|
|
nix target support consists of two tiers. While nix attempts to support all
|
|
|
|
platforms supported by [libc](https://github.com/rust-lang/libc), only some
|
|
|
|
platforms are actively supported due to either technical or manpower
|
|
|
|
limitations. Support for platforms is split into two tiers:
|
2017-04-15 19:12:33 +00:00
|
|
|
|
2017-04-17 22:16:22 +00:00
|
|
|
* Tier 1 - Builds and tests for this target are run in CI. Failures of either
|
|
|
|
block the inclusion of new code.
|
|
|
|
* Tier 2 - Builds for this target are run in CI. Failures during the build
|
|
|
|
blocks the inclusion of new code. Tests may be run, but failures
|
|
|
|
in tests don't block the inclusion of new code.
|
2017-04-15 19:12:33 +00:00
|
|
|
|
|
|
|
The following targets are all supported by nix on Rust 1.13.0 or newer:
|
|
|
|
|
|
|
|
Tier 1:
|
|
|
|
* i686-unknown-linux-gnu
|
|
|
|
* x86_64-unknown-linux-gnu
|
|
|
|
* i686-apple-darwin
|
|
|
|
* x86_64-apple-darwin
|
|
|
|
* aarch64-unknown-linux-gnu
|
|
|
|
* armv7-unknown-linux-gnueabihf
|
|
|
|
* arm-unknown-linux-gnueabi
|
2017-06-04 19:41:22 +00:00
|
|
|
* x86_64-unknown-freebsd
|
2017-04-17 18:55:37 +00:00
|
|
|
* powerpc-unknown-linux-gnu
|
2017-04-17 18:49:16 +00:00
|
|
|
* mips-unknown-linux-gnu
|
|
|
|
* mipsel-unknown-linux-gnu
|
2017-04-17 23:13:42 +00:00
|
|
|
* i686-unknown-linux-musl
|
2017-04-18 00:34:02 +00:00
|
|
|
* x86_64-unknown-linux-musl
|
2017-04-15 19:12:33 +00:00
|
|
|
|
|
|
|
Tier 2:
|
|
|
|
* i686-unknown-freebsd
|
|
|
|
* x86_64-unknown-netbsd
|
2017-02-24 19:09:38 +00:00
|
|
|
|
2015-02-21 00:24:42 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
To use `nix`, first add this to your `Cargo.toml`:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
2017-03-02 04:49:52 +00:00
|
|
|
nix = "0.8.0"
|
2015-02-21 00:24:42 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Then, add this to your crate root:
|
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
```rust,ignore
|
2015-02-21 00:24:42 +00:00
|
|
|
extern crate nix;
|
|
|
|
```
|
2016-02-27 12:02:25 +00:00
|
|
|
## Contributing
|
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
Contributions are very welcome. Please See [CONTRIBUTING](CONTRIBUTING.md) for
|
|
|
|
additional details.
|
|
|
|
|
2017-06-03 19:17:19 +00:00
|
|
|
Feel free to join us in [the nix-rust/nix](https://gitter.im/nix-rust/nix) channel on Gitter to
|
|
|
|
discuss `nix` development.
|
|
|
|
|
2016-07-10 06:27:13 +00:00
|
|
|
## License
|
|
|
|
|
|
|
|
Nix is licensed under the MIT license. See [LICENSE](LICENSE) for more details.
|