[package]
edition = "2024"
rust-version = "1.85"
name = "rebecca-cli"
version = "0.1.0"
authors = ["Rebecca contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Windows-first cleanup CLI for caches, app leftovers, and project artifacts."
homepage = "https://github.com/Latias94/rebecca"
documentation = "https://docs.rs/rebecca-cli"
readme = "README.md"
keywords = [
"windows",
"cleanup",
"cache",
"cli",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/rebecca"
[package.metadata.dist]
dist = true
[[bin]]
name = "rebecca"
path = "src/main.rs"
[[test]]
name = "cli_api"
path = "tests/cli_api.rs"
[[test]]
name = "cli_apps"
path = "tests/cli_apps.rs"
[[test]]
name = "cli_cache"
path = "tests/cli_cache.rs"
[[test]]
name = "cli_clean"
path = "tests/cli_clean.rs"
[[test]]
name = "cli_completion"
path = "tests/cli_completion.rs"
[[test]]
name = "cli_help"
path = "tests/cli_help.rs"
[[test]]
name = "cli_history"
path = "tests/cli_history.rs"
[[test]]
name = "cli_output"
path = "tests/cli_output.rs"
[[test]]
name = "cli_purge"
path = "tests/cli_purge.rs"
[[test]]
name = "cli_scan"
path = "tests/cli_scan.rs"
[[test]]
name = "info"
path = "tests/info.rs"
[[test]]
name = "output"
path = "tests/output.rs"
[[test]]
name = "scan"
path = "tests/scan.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
"color",
]
[dependencies.clap_complete]
version = "4.6.5"
[dependencies.ctrlc]
version = "3.4"
[dependencies.dialoguer]
version = "0.11"
[dependencies.indicatif]
version = "0.17"
[dependencies.rebecca-core]
version = "0.1.0"
[dependencies.rebecca-rules]
version = "0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.tempfile]
version = "3.10"
[target."cfg(windows)".dependencies.rebecca-windows]
version = "0.1.0"