[package] name = "kv-cli" version = "0.1.0" description = "A command line tool to store and retrieve key-value pairs" homepage = "https://github.com/trusch/kv" repository = "https://github.com/trusch/kv" readme = "README.md" license-file = "LICENSE.md" edition = "2021" keywords = ["key-value", "cli", "storage", "gpg", "git"] categories = ["command-line-utilities"] [[bin]] name = "kv" path = "src/main.rs" [dependencies] chrono = "0.4.22" clap = { version = "4.0.10", features = ["derive", "env"] } clap_complete = "4.0.6" log = "0.4.17" pretty_env_logger = "0.4.0" serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.85" shellexpand = "2.1.2" walkdir = "2.3.2"