env-inventory
is a Rust library designed to manage and consolidate the process of fetching parameters from the environment. It offers a flexible system to work with environment variables and configurations stored in TOML files.
Add env-inventory
to your Cargo.toml
:
toml
[dependencies]
env-inventory = "0.2" # Check crates.io for the latest version
RequiredVar
struct.rust
env_inventory::register_env_var!("DATABASE_URL");
rust
let paths = ["path/to/settings.toml"];
env_inventory::load_and_validate_env_vars(&paths, "env").unwrap();
The library provides an EnvInventoryError
enum to handle various error types such as:
- Reading or parsing the settings file.
- Missing required environment variables.
Pull requests are welcome. Please ensure that your PR passes all the tests before submitting. Unless otherwise stated, your contributions are assumed to be under the MIT license.