mirror of
https://github.com/uutils/coreutils
synced 2024-12-24 03:53:16 +00:00
ca1074201f
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.
18 lines
211 B
TOML
18 lines
211 B
TOML
[package]
|
|
name = "shuf"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "shuf"
|
|
path = "shuf.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|
|
rand = "*"
|
|
uucore = { path="../uucore" }
|
|
|
|
[[bin]]
|
|
name="shuf"
|
|
path="shuf.rs"
|