27 lines
581 B
TOML
27 lines
581 B
TOML
[package]
|
|
name = "superdeduper"
|
|
version = "0.1.0"
|
|
authors = ["Bill Thiede <git@xinu.tv>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
glob = "0.3"
|
|
human_format = { git ="https://github.com/wathiede/human-format-rs" }
|
|
humantime = "1"
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|
|
rayon = "1.2"
|
|
regex = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
stderrlog = "0.4"
|
|
structopt = "0.3"
|
|
tabwriter = "1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6.1"
|
|
tempfile = "3.1.0"
|