mirror of
https://github.com/uutils/coreutils
synced 2025-01-23 18:35:21 +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.
21 lines
258 B
TOML
21 lines
258 B
TOML
[package]
|
|
name = "ptx"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "ptx"
|
|
path = "ptx.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|
|
aho-corasick = "*"
|
|
memchr = "*"
|
|
regex-syntax = "*"
|
|
regex = "*"
|
|
uucore = { path="../uucore" }
|
|
|
|
[[bin]]
|
|
name="ptx"
|
|
path="ptx.rs"
|