[package]
name = "envorigin"
version = "1.11.0"
edition = "2021"
description = "Explain where environment variables come from — Docker Compose, GitHub Actions, GitLab CI, CircleCI"
license = "MIT"
repository = "https://github.com/FIERsity/envorigin"
readme = "README.md"
keywords = ["docker", "compose", "gitlab", "circleci", "secrets"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
".github/",
"scripts/",
".gitignore",
]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sha2 = "0.11"
thiserror = "2.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std"] }
toml = "1.1"
tower-lsp = "0.20"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.20"
[profile.release]
lto = "thin"
strip = true