Proxmox-rs nix backport for loongarch64
Go to file
2015-03-31 14:29:50 -07:00
nix-test Amend some files to make it compile on arm-linux-androideabi. 2015-03-13 16:40:28 -07:00
src Use libc from crates.io 2015-03-25 18:41:57 -07:00
test Track Rust nightly 2015-03-28 17:05:47 -07:00
.gitignore Test errno defines 2015-02-19 19:30:19 -08:00
.travis.yml Automatically deploy docs 2015-02-20 16:27:29 -08:00
Cargo.toml Track Rust nightly 2015-03-31 14:29:50 -07:00
deploy.sh Automatically deploy docs 2015-02-20 16:27:29 -08:00
LICENSE Add a license file 2015-02-02 10:51:34 -08:00
README.md Link to API docs 2015-02-20 16:34:28 -08:00

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

Usage

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

[dependencies]
nix = "*"

Then, add this to your crate root:

extern crate nix;