Files
keep/Cargo.toml
Andrew Phillips 6e4b690bd8 feat: use humansize crate and which crate for program lookup
Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
2025-08-12 16:23:11 -03:00

57 lines
1.5 KiB
TOML

[package]
name = "keep"
version = "0.1.0"
edition = "2024"
description = "Keep and manage temporary files with automatic compression and metadata generation"
readme = "README.md"
categories = ["command-line-utilities"]
[[test]]
name = "tests"
path = "src/tests.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.10", features = ["derive", "env"] }
directories = "5.0.1"
lazy_static = "1.4.0"
libc = "0.2.147"
log = "0.4.19"
rusqlite = { version = "0.29.0", features = ["bundled", "array", "chrono"] }
rusqlite_migration = "1.0.2"
stderrlog = "0.5.4"
strum_macros = "0.25"
strum = { version = "0.25", features = ["derive"] }
prettytable-rs = "0.10.0"
chrono = "0.4.26"
gethostname = "0.4.3"
humansize = "2.1.3"
enum-map = "2.6.1"
inventory = "0.3"
is-terminal = "0.4.9"
term = "0.7.0"
lz4_flex = "0.11.1"
flate2 = { version = "1.0.27", features = ["zlib-ng-compat"] }
regex = "1.9.5"
nix = "0.26.2"
sha2 = "0.10.0"
local-ip-address = "0.5.5"
dns-lookup = "2.0.2"
uzers = "0.11.3"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde_yaml = "0.9.34"
tokio = { version = "1.0", features = ["full"] }
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs", "trace"] }
hyper = { version = "1.0", features = ["full"] }
once_cell = "1.19.0" once_cell = "1.19.0"
once_cell = "1.19.0"which = "6.0"
[dev-dependencies]
tempfile = "3.3.0"