mirror of
https://github.com/jiangcuo/nix.git
synced 2026-01-22 05:32:16 +00:00
Proxmox-rs nix backport for loongarch64
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> |
||
|---|---|---|
| ci | ||
| nix-test | ||
| src | ||
| test | ||
| .gitignore | ||
| .travis.yml | ||
| Cargo.toml | ||
| CONTRIBUTING.md | ||
| CONVENTIONS.md | ||
| deploy.sh | ||
| LICENSE | ||
| README.md | ||
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.
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.