env_helpers

Crates.ioenv_helpers
lib.rsenv_helpers
version0.1.0
created_at2025-10-05 18:47:35.49679+00
updated_at2025-10-05 18:47:35.49679+00
descriptionA library for working with env variables
homepage
repositoryhttps://github.com/sssemil/env_helpers
max_upload_size
id1869313
size4,148
Emil (sssemil)

documentation

README

env_helpers

A basic crate for working with env variables in a typed manner.

Example:

use env_helpers::get_env;
use std::path::PathBuf;

fn main() {
    let home_path: PathBuf = get_env("HOME");
    println!("{:?}", home_path);
}
Commit count: 0

cargo fmt