1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

arch: add new utility

Signed-off-by: Smigle00 <smigle00@gmail.com>
This commit is contained in:
Smigle00 2016-07-10 00:48:10 +05:30
parent 91726aa7cf
commit 35fec95d60
6 changed files with 136 additions and 0 deletions

35
Cargo.lock generated
View file

@ -3,6 +3,7 @@ name = "uutils"
version = "0.0.1"
dependencies = [
"aho-corasick 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"arch 0.0.1",
"base64 0.0.1",
"basename 0.0.1",
"cat 0.0.1",
@ -69,6 +70,7 @@ dependencies = [
"sleep 0.0.1",
"sort 0.0.1",
"split 0.0.1",
"stat 0.0.1",
"stdbuf 0.0.1",
"sum 0.0.1",
"sync 0.0.1",
@ -115,6 +117,15 @@ dependencies = [
"memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "arch"
version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "base64"
version = "0.0.1"
@ -553,6 +564,11 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "nom"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "nproc"
version = "0.0.1"
@ -852,6 +868,14 @@ name = "semver"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "semver"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"nom 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "seq"
version = "0.0.1"
@ -898,6 +922,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"semver 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
@ -910,6 +935,16 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "stat"
version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "stdbuf"
version = "0.0.1"