all_env

Crates.ioall_env
lib.rsall_env
version0.1.0
sourcesrc
created_at2024-01-19 12:49:53.884888
updated_at2024-01-19 12:49:53.884888
descriptionA library to retrieve environment variables from different file types.
homepage
repository
max_upload_size
id1105255
size11,419
Eddy (Maestro2496)

documentation

README

EnvVar

EnvVar is a Rust library for retrieving environment variables from different file types.

Supported File Types

  • Simple txt files (.txt, .env)
  • JSON files (.json)

Installation

Add the following to your Cargo.toml file:

[dependencies]
all_env = "0.1.0"

Examples

Examples with debug

use all_env::EnvHolder;
 // With debug flag set to true
let env_holder = EnvHolder::new(true);
let url = env_holder.get_var("url");
if let Some(url_value) = url {
    // Further processing
 }

Examples without debug with and a custom file_name

use all_env::EnvHolder;
 // With debug flag set to true
let env_holder = EnvHolder::new(false).with_file_name("custom_file.env");
let url = env_holder.get_var("url");
if let Some(url_value) = url {
    // Further processing
 }

Contributing

Contributions are welcome! If you find a bug, have a feature request, or would like to contribute to the project, please feel free to open an issue or submit a pull request. Your feedback and contributions help make this library better for everyone.

Commit count: 0

cargo fmt