fd/Cargo.toml

20 lines
266 B
TOML
Raw Normal View History

2017-05-12 09:50:03 +00:00
[package]
name = "fd"
2017-05-14 20:15:51 +00:00
version = "0.3.0"
2017-05-12 09:50:03 +00:00
authors = ["David Peter <mail@david-peter.de>"]
[[bin]]
name = "fd"
path = "src/bin/main.rs"
[lib]
name = "fd"
path = "src/fd.rs"
2017-05-12 09:50:03 +00:00
[dependencies]
2017-05-12 21:37:09 +00:00
ansi_term = "0.9"
2017-05-12 09:50:03 +00:00
getopts = "0.2"
2017-05-12 21:37:09 +00:00
isatty = "0.1"
2017-05-12 09:50:03 +00:00
regex = "0.2"
2017-05-15 20:38:34 +00:00
ignore = "0.2"