[package]
edition = "2024"
name = "sealed-env"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read and decrypt sealed environment variables"
homepage = "https://github.com/openRings/sealed"
readme = "README.md"
keywords = [
"env",
"dotenv",
"secrets",
"encryption",
]
categories = [
"cryptography",
"config",
]
license = "MIT"
repository = "https://github.com/openRings/sealed"
resolver = "2"
[lib]
name = "sealed_env"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.secrecy]
version = "0.10"
[dependencies.thiserror]
version = "2"