Proxmox-rs nix backport for loongarch64
Go to file
Paul Osborne d95f4d55cf testing: disable some targets and continue running on failure
Later on, it will probably make sense to stop on failure -- given
that most targets currently fail, however, this works a bit better
for the time being.

Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-13 00:41:05 -06:00
ci testing: disable some targets and continue running on failure 2016-03-13 00:41:05 -06:00
nix-test test: clean up the test build script 2016-03-05 18:01:09 -06:00
src android: Fix reference to libc::ioctl 2016-03-12 20:44:49 -05: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: increase stability by removing thread parallelism 2016-03-05 01:21:38 -06:00
Cargo.toml Add gettid 2016-03-07 20:41:38 -08:00
CONTRIBUTING.md Add E-prefixed issue labels for level of experience 2016-03-06 14:36:00 -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 Fix Travis-CI links. 2016-03-04 18:24:10 +01: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;

Contributing

See CONTRIBUTING.