coreutils/src/du/Cargo.toml
Joseph Crail ca1074201f Split utility files into separate library.
Everything in src/common has been moved to src/uucore. This is defined
as a Cargo library, instead of directly included. This gives us
flexibility to make the library an external crate in the future.

Fixes #717.
2015-11-24 22:20:27 -05:00

18 lines
201 B
TOML

[package]
name = "du"
version = "0.0.1"
authors = []
[lib]
name = "du"
path = "du.rs"
[dependencies]
getopts = "*"
libc = "*"
time = "*"
uucore = { path="../uucore" }
[[bin]]
name="du"
path="du.rs"