[package]
name = "cargo-cache"
version = "0.3.2"
authors = ["Matthias Krüger <matthias.krueger@famsik.de>"]
description = "Manage cargo cache ($CARGO_HOME or ~/.cargo/), show sizes and remove directories selectively"
homepage = "https://github.com/matthiaskrgr/cargo-cache"
repository = "https://github.com/matthiaskrgr/cargo-cache"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["cargo", "cache", "cli", "manage", "cargo-home"]
categories = ["command-line-utilities", "development-tools::cargo-plugins", "development-tools"]
build = "src/build.rs"
edition = "2018"
[features]
bench = []
[dependencies]
cargo_metadata = "0.8.2"
clap = "2.33.0"
git2 = { version = "0.10.1", default-features = false }
home = "0.5.0"
humansize = "1.1.0"
rayon = "1.2.0"
regex = "1.2.0"
rustc_tools_util = "0.2.0"
walkdir = "2.2.9"
[dev-dependencies]
path-slash = "0.1.1"
pretty_assertions = "0.6.1"
[build-dependencies]
rustc_tools_util = "0.2.0"
[[bin]]
name = "cargo-cache"
path = "src/main.rs"
test = true
bench = true
[badges]
travis-ci = { repository = "matthiaskrgr/cargo-cache", branch = "master" }
[profile.release]
lto = true
codegen-units = 1
incremental = false
[profile.bench]
lto = true
codegen-units = 1
incremental = false