Proxmox-rs nix backport for loongarch64
Go to file
2016-02-14 23:41:57 -05:00
nix-test Convert MSG_ flags to bitflags! type. 2016-01-29 22:51:44 -05:00
src linux: Add splice(2), tee(2), vmsplice(2) 2016-02-14 23:41:57 -05:00
test linux: Add splice(2), tee(2), vmsplice(2) 2016-02-14 23:41:57 -05:00
.gitignore Test errno defines 2015-02-19 19:30:19 -08:00
.travis.yml ci: Re-enable Travis builds for i686 2016-01-29 23:16:43 -05:00
Cargo.toml linux: Add sendfile(2) 2016-02-12 21:12:14 -05:00
CONVENTIONS.md Amend bitflags convention to cover all cases. 2016-02-01 16:24:19 -05: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 Update README 2015-05-28 15:17:49 -07: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 crates.io

Documentation

API documentation generated by rustdoc:

Usage

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

[dependencies]
nix = "*"

Then, add this to your crate root:

extern crate nix;