[package]
edition = "2021"
rust-version = "1.74"
name = "dotseal"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Seal individual dotenv values with scope-bound keys (AES-256-GCM, AAD-bound to (scope, name))"
homepage = "https://github.com/clbrge/dotseal"
documentation = "https://docs.rs/dotseal"
readme = "README.md"
keywords = [
"dotenv",
"secrets",
"encryption",
"aes-gcm",
"config",
]
categories = [
"command-line-utilities",
"cryptography",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/clbrge/dotseal"
[lib]
name = "dotseal"
path = "src/lib.rs"
[[bin]]
name = "dotseal"
path = "src/main.rs"
[[example]]
name = "gen_vectors"
path = "examples/gen_vectors.rs"
[[test]]
name = "cli_exec"
path = "tests/cli_exec.rs"
[[test]]
name = "cli_subcommands"
path = "tests/cli_subcommands.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.indexmap]
version = "2.2"
[dependencies.libc]
version = "0.2"
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.zeroize]
version = "1.7"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"