1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

stat: add Cargo.toml

This commit is contained in:
Knight 2016-05-31 13:21:55 +08:00
parent 6a4efdc842
commit 3202c18c54

19
src/stat/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "stat"
version = "0.0.1"
authors = []
[lib]
name = "uu_stat"
path = "stat.rs"
[dependencies]
getopts = "*"
libc = "*"
time = "*"
users = "*"
uucore = { path="../uucore" }
[[bin]]
name = "stat"
path = "main.rs"