walkdir/walkdir-list/Cargo.toml
Andrew Gallant 526d70b165 list: add new walkdir-list binary
This supplants the previous "example" which was more like a debugging
program. So this commit not only rewrites it (dropping docopt in the
process in favor of clap), but moves it to its own non-published binary
crate.
2019-07-20 13:37:00 -04:00

24 lines
732 B
TOML

[package]
publish = false
name = "walkdir-bin"
version = "0.0.0"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "A simple command line tool for playing with walkdir on the CLI."
documentation = "https://docs.rs/walkdir"
homepage = "https://github.com/BurntSushi/walkdir"
repository = "https://github.com/BurntSushi/walkdir"
keywords = ["walk", "directory", "recursive", "find"]
license = "Unlicense OR MIT"
categories = ["command-line-utilities"]
edition = "2018"
[[bin]]
name = "walkdir-list"
path = "main.rs"
[dependencies]
atty = "0.2.11"
bstr = { version = "0.1.2", default-features = false, features = ["std"] }
clap = { version = "2.33.0", default-features = false }
walkdir = { version = "*", path = ".." }