stand 0.1.1

A CLI tool for explicit environment variable management
Documentation
[[bin]]
name = "stand"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive", "color", "suggestions"]
version = "4.0"

[dependencies.colored]
version = "2.0"

[dependencies.dirs]
version = "5.0"

[dependencies.indexmap]
features = ["serde"]
version = "2.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1.0"

[dependencies.toml]
version = "0.8"

[dependencies.which]
version = "4.4"

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

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

[dev-dependencies.serial_test]
version = "3.0"

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

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

[package]
authors = ["ueneid"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A CLI tool for explicit environment variable management"
edition = "2021"
keywords = ["cli", "environment", "dotenv", "shell"]
license = "MIT"
name = "stand"
readme = "README.md"
repository = "https://github.com/ueneid/stand"
version = "0.1.1"

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true

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

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

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

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

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

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

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

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

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

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

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

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

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