mirror of
https://github.com/uutils/coreutils
synced 2024-12-19 17:43:52 +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.
17 lines
210 B
TOML
17 lines
210 B
TOML
[package]
|
|
name = "mkfifo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "mkfifo"
|
|
path = "mkfifo.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|
|
uucore = { path="../uucore" }
|
|
|
|
[[bin]]
|
|
name="mkfifo"
|
|
path="mkfifo.rs"
|