ssrm 1.0.0

CLI tool to remove macOS screenshots and screen recordings
Documentation
[package]
name = "ssrm"
version = "1.0.0"
edition = "2021"
description = "CLI tool to remove macOS screenshots and screen recordings"
license = "MIT"
repository = "https://github.com/GriffinCanCode/ssrm"
authors = ["Griffin"]
keywords = ["macos", "screenshots", "cleanup", "cli"]
categories = ["command-line-utilities", "filesystem"]
readme = "README.md"

[lib]
name = "ssrm"
path = "src/lib.rs"

[[bin]]
name = "ssrm"
path = "src/main.rs"

[dependencies]
chrono = "0.4"
dirs = "5"
owo-colors = "4"
regex = "1"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
trash = "5"

[dev-dependencies]
tempfile = "3"

[profile.release]
lto = true
strip = true