[package]
name = "ffcnt"
version = "0.2.2"
authors = ["The8472"]
include = ["**/*.rs", "README.md", "LICENCE", "Cargo.toml", "Cargo.lock"]
description = "Fast file counting on HDDs"
readme = "README.md"
keywords = ["linux", "cli"]
categories = ["command-line-utilities", "filesystem"]
license = "GPL-3.0"
repository = "https://github.com/the8472/ffcnt"
[profile.release]
opt-level = "s"
lto = true
debug = false
panic = "abort"
[[bin]]
name = "ffcnt"
path = "src/main.rs"
[dependencies.isatty]
version = "0.1.3"
[dependencies.derive-error]
version = "0.0.3"
[dependencies.clap]
version = "2.20"
[dependencies.platter-walk]
version = "0.1.2"
[features]
system_alloc = []