nix/README.md
Paul Osborne 4e245f48ce testing: update documentation related to testing
Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-14 13:03:51 -05:00

885 B

Rust bindings to *nix APIs

Rust 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.

Build Status crates.io

Documentation

API documentation generated by rustdoc:

Usage

To use nix, first add this to your Cargo.toml:

[dependencies]
nix = "0.5.0"

Then, add this to your crate root:

extern crate nix;

Contributing

See CONTRIBUTING.