fd/Cargo.toml

20 lines
266 B
TOML
Raw Normal View History

2017-05-12 11:50:03 +02:00
[package]
name = "fd"
2017-05-14 22:15:51 +02:00
version = "0.3.0"
2017-05-12 11:50:03 +02: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 11:50:03 +02:00
[dependencies]
2017-05-12 23:37:09 +02:00
ansi_term = "0.9"
2017-05-12 11:50:03 +02:00
getopts = "0.2"
2017-05-12 23:37:09 +02:00
isatty = "0.1"
2017-05-12 11:50:03 +02:00
regex = "0.2"
2017-05-15 22:38:34 +02:00
ignore = "0.2"