mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +00:00
26 lines
439 B
TOML
26 lines
439 B
TOML
[package]
|
|
name = "ls"
|
|
version = "0.0.1"
|
|
authors = ["Jeremiah Peschka <jeremiah.peschka@gmail.com>"]
|
|
build = "../../mkmain.rs"
|
|
|
|
[lib]
|
|
name = "uu_ls"
|
|
path = "ls.rs"
|
|
|
|
[dependencies]
|
|
getopts = "0.2.14"
|
|
pretty-bytes = "0.2.1"
|
|
term_grid = "0.1.5"
|
|
termsize = "0.1.4"
|
|
time = "0.1.38"
|
|
lazy_static = "0.2.8"
|
|
unicode-width = "0.1.4"
|
|
|
|
[dependencies.uucore]
|
|
path = "../uucore"
|
|
features = ["entries", "fs"]
|
|
|
|
[[bin]]
|
|
name = "ls"
|
|
path = "../../uumain.rs"
|