Proxmox-rs nix backport for loongarch64
Go to file
2016-03-21 18:46:54 -04:00
ci travis: add back testing on all rust versions (for linux) 2016-03-17 11:36:52 -05:00
nix-test test: clean up the test build script 2016-03-05 18:01:09 -06:00
src Auto merge of #311 - fiveop:context, r=@kamalmarhubi 2016-03-17 16:41:43 +09:00
test Use getuid(2) from nix instead of libc in test_mount 2016-03-21 18:46:54 -04:00
.gitignore Test errno defines 2015-02-19 19:30:19 -08:00
.travis.yml travis: add back testing on all rust versions (for linux) 2016-03-17 11:36:52 -05:00
Cargo.toml libc: revert change to libc version 2016-03-14 12:45:14 -05:00
CONTRIBUTING.md contributing: Add R- architecture-specific label prefix 2016-03-17 07:51:31 -04:00
CONVENTIONS.md Add libc_bitflags convenience macro 2016-03-16 11:59:03 -04: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 testing: update documentation related to testing 2016-03-14 13:03:51 -05: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 = "0.5.0"

Then, add this to your crate root:

extern crate nix;

Contributing

See CONTRIBUTING.