[package]
edition = "2024"
rust-version = "1.85"
name = "pristine-cli"
version = "0.1.0"
authors = ["Craigory Coppola <craigorycoppola@gmail.com>"]
build = false
exclude = ["project.json"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A language-agnostic reclaimable-space finder and cleaner."
readme = "README.md"
keywords = [
"disk",
"cleanup",
"node_modules",
"cli",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/AgentEnder/pristine"
[lib]
name = "pristine"
path = "src/lib.rs"
[[bin]]
name = "pristine"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "delete"
path = "tests/delete.rs"
[[test]]
name = "dist_channels"
path = "tests/dist_channels.rs"
[[test]]
name = "fallback"
path = "tests/fallback.rs"
[[test]]
name = "repo"
path = "tests/repo.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[[test]]
name = "walk"
path = "tests/walk.rs"
[dependencies.cap-primitives]
version = "4.0.2"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.globset]
version = "0.4.20"
[dependencies.ignore]
version = "0.4.33"
[dependencies.ratatui]
version = "0.30"
features = [
"crossterm",
"layout-cache",
]
default-features = false
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.toml]
version = "1.1.4"
[dependencies.unicode-normalization]
version = "0.1.25"
[dev-dependencies.filetime]
version = "0.2.28"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"