mirror of
https://github.com/jiangcuo/nix.git
synced 2026-01-23 15:23:48 +00:00
Proxmox-rs nix backport for loongarch64
The limit of 32 cores may not actually be a limit with arm-linux, but I am not aware of anything in excess of 32 processors out there currently and this is what I have been running for awhile now on a beaglebone black (`--target=arm-unknown-linux-gnueabihf`). This change addresses #95 and relates to #97. |
||
|---|---|---|
| nix-test | ||
| src | ||
| test | ||
| .gitignore | ||
| .travis.yml | ||
| Cargo.toml | ||
| 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.
Usage
To use nix, first add this to your Cargo.toml:
[dependencies]
nix = "*"
Then, add this to your crate root:
extern crate nix;