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

Merge pull request #845 from peschkaj/master

Basic implementation of ls
This commit is contained in:
Heather 2016-05-01 00:56:11 +04:00
commit 1fafde8c27
7 changed files with 290 additions and 0 deletions

20
Cargo.lock generated
View file

@ -35,6 +35,7 @@ dependencies = [
"link 0.0.1",
"ln 0.0.1",
"logname 0.0.1",
"ls 0.0.1",
"memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"mkdir 0.0.1",
"mkfifo 0.0.1",
@ -444,6 +445,16 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "ls"
version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty-bytes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "memchr"
version = "0.1.7"
@ -567,6 +578,15 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "pretty-bytes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "primal"
version = "0.2.3"