[package]
name = "etoml"
description = "A command line utility for managing secrets in encrypted TOML files"
version = "0.2.1"
edition = "2021"
license = "MIT"
categories = ["command-line-utilities", "secrets"]
repository = "https://github.com/axelerator/etoml"
authors = ["Axel Tetzlaff <axel.tetzlaff@gmx.de>"]
keywords = [
"cryptography",
"secrets",
"encryption"
]
[[bin]]
name = "etoml"
[dependencies]
base64 = "0.21.3"
serde = { version = "1.0.188", features = ["derive"] }
toml = "0.7.6"
clap = { version = "4.4.2", features = ["derive"] }
crypto_box = { version = "0.9.1", features = ["chacha20", "serde"] }
generic-array = { version = "0.14.7", features = ["serde"] }