1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-16 02:01:05 +00:00
uutils-coreutils/src/uu/nproc/Cargo.toml
2023-11-13 22:02:01 +01:00

24 lines
624 B
TOML

[package]
name = "uu_nproc"
version = "0.0.23"
authors = ["uutils developers"]
license = "MIT"
description = "nproc ~ (uutils) display the number of processing units available"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/nproc"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"
[lib]
path = "src/nproc.rs"
[dependencies]
libc = { workspace = true }
clap = { workspace = true }
uucore = { workspace = true, features = ["fs"] }
[[bin]]
name = "nproc"
path = "src/main.rs"