[package]
edition = "2021"
name = "cleansys-core"
version = "0.6.2"
authors = ["Sorin Albu-Irimies <sorinirimies@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared core logic for CleanSys — cleaners, domain model, and utilities shared by the TUI and GUI"
readme = "README.md"
keywords = [
"clean",
"system",
"linux",
"cleanup",
"cache",
]
categories = [
"command-line-utilities",
"filesystem",
"os",
]
license = "MIT"
repository = "https://github.com/sorinirimies/cleansys"
[lib]
name = "cleansys_core"
path = "src/lib.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.colored]
version = "3.1"
[dependencies.directories]
version = "6.0"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.27"
[dev-dependencies.tempfile]
version = "3.27"
[target."cfg(unix)".dependencies.users]
version = "0.11"
[target."cfg(windows)".dependencies.is_elevated]
version = "0.1"
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
"Win32_UI_Shell",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
]