evnx 0.2.1

A comprehensive CLI tool for managing .env files — validation, secret scanning, and format conversion
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "evnx"
version = "0.2.1"
authors = ["Ajit Kumar <ajitkumar.pu@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive CLI tool for managing .env files — validation, secret scanning, and format conversion"
homepage = "https://dotenv.space"
documentation = "https://dotenv.space"
readme = "README.md"
keywords = [
    "env",
    "dotenv",
    "secrets",
    "cli",
    "devops",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/urwithajit9/evnx"

[features]
backup = [
    "aes-gcm",
    "argon2",
]
default = []
full = [
    "migrate",
    "backup",
]
migrate = ["reqwest"]

[lib]
name = "evnx"
path = "src/lib.rs"

[[bin]]
name = "evnx"
path = "src/main.rs"

[[test]]
name = "add_integration"
path = "tests/add_integration.rs"

[[test]]
name = "doctor_integration"
path = "tests/doctor_integration.rs"

[[test]]
name = "init_integration"
path = "tests/init_integration.rs"

[[test]]
name = "schema_integration"
path = "tests/schema_integration.rs"

[[test]]
name = "schema_unit"
path = "tests/schema_unit.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[[bench]]
name = "cli_benchmarks"
path = "benches/cli_benchmarks.rs"

[dependencies.aes-gcm]
version = "0.10"
optional = true

[dependencies.anyhow]
version = "1"

[dependencies.argon2]
version = "0.5"
optional = true

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4"
features = [
    "derive",
    "cargo",
    "env",
]

[dependencies.clap_complete]
version = "4"

[dependencies.colored]
version = "2"

[dependencies.console]
version = "0.15"

[dependencies.dialoguer]
version = "0.11"

[dependencies.dirs]
version = "5"

[dependencies.dotenvy]
version = "0.15"

[dependencies.glob]
version = "0.3"

[dependencies.indicatif]
version = "0.17"

[dependencies.lazy_static]
version = "1.4"

[dependencies.rand]
version = "0.10.0"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tempfile]
version = "3.10"

[dependencies.thiserror]
version = "1"

[dependencies.toml]
version = "0.8"

[dependencies.walkdir]
version = "2"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.pretty_assertions]
version = "1"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tempfile]
version = "3"

[build-dependencies.serde_json]
version = "1.0"

[profile.dev]
opt-level = 0

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true

[profile.test]
opt-level = 0