Proxmox-rs nix backport for loongarch64
Go to file
Paul Osborne e18111bf21 testing: remove refs to test_nix in run-all.sh
Somewhere in the last set of changes, a few references to
`test_nix` were not removed.  Since that function doesn't exist,
the tests would never be run on those targets.

This script is only used when testing locally right now.

Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-16 14:47:58 -05:00
ci testing: remove refs to test_nix in run-all.sh 2016-03-16 14:47:58 -05:00
nix-test test: clean up the test build script 2016-03-05 18:01:09 -06:00
src Rename flags to conform to conventions. 2016-03-13 11:00:21 +01:00
test update signalfd to use libc types 2016-03-10 20:53:53 +01:00
.gitignore Test errno defines 2015-02-19 19:30:19 -08:00
.travis.yml testing: docker tests now work on travis 2016-03-13 16:19:20 -05:00
Cargo.toml libc: revert change to libc version 2016-03-14 12:45:14 -05:00
CONTRIBUTING.md testing: update documentation related to testing 2016-03-14 13:03:51 -05:00
CONVENTIONS.md conventions: Codify use of newtypes 2016-03-11 11:40:22 -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 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.