Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
27
third-party/vendor/num_cpus/README.md
vendored
Normal file
27
third-party/vendor/num_cpus/README.md
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# num_cpus
|
||||
|
||||
[](https://crates.io/crates/num_cpus)
|
||||
[](https://github.com/seanmonstar/num_cpus/actions)
|
||||
|
||||
- [Documentation](https://docs.rs/num_cpus)
|
||||
- [CHANGELOG](CHANGELOG.md)
|
||||
|
||||
Count the number of CPUs on the current machine.
|
||||
|
||||
## Usage
|
||||
|
||||
Add to Cargo.toml:
|
||||
|
||||
```toml
|
||||
[dependencies]
|
||||
num_cpus = "1.0"
|
||||
```
|
||||
|
||||
In your `main.rs` or `lib.rs`:
|
||||
|
||||
```rust
|
||||
extern crate num_cpus;
|
||||
|
||||
// count logical cores this process could try to use
|
||||
let num = num_cpus::get();
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue