Files
keep/Cargo.toml
Andrew Phillips 45a528118c fix: remove duplicate thiserror dependency
Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
2025-08-27 21:52:48 -03:00

71 lines
1.8 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"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
axum = "0.8.4"
derive_more = "2.0"
smart-default = "0.7"
thiserror = "1.0"
base64 = "0.22.1"
chrono = "0.4.26"
clap = { version = "4.3.10", features = ["derive", "env"] }
config = "0.14.0"
directories = "6.0.0"
dns-lookup = "2.0.2"
enum-map = "2.6.1"
flate2 = { version = "1.0.27", features = ["zlib-ng-compat"] }
futures = "0.3"
gethostname = "1.0.2"
humansize = "2.1.3"
hyper = { version = "1.0", features = ["full"] }
inventory = "0.3"
is-terminal = "0.4.9"
lazy_static = "1.4.0"
libc = "0.2.147"
local-ip-address = "0.6.5"
log = "0.4.19"
lz4_flex = "0.11.1"
magic = "0.13.0"
nix = "0.30.1"
once_cell = "1.19.0"
prettytable-rs = "0.10.0"
pwhash = "1.0.0"
regex = "1.9.5"
rmcp = { version = "0.2.0", features = ["server"] }
rusqlite = { version = "0.37.0", features = ["bundled", "array", "chrono"] }
rusqlite_migration = "2.3.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde_yaml = "0.9.34"
sha2 = "0.10.0"
md5 = "0.7.0"
stderrlog = "0.6.0"
strum = { version = "0.27.2", features = ["derive"] }
strum_macros = "0.27.2"
term = "1.1.0"
termsize = "0.1.9"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"
tokio-util = "0.7.16"
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["cors", "fs", "trace"] }
utoipa = { version = "5.4.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
uzers = "0.12.1"
which = "8.0.0"
xdg = "2.5.2"
[dev-dependencies]
tempfile = "3.3.0"
rand = "0.8.5"