| Crates.io | env_helpers |
| lib.rs | env_helpers |
| version | 0.1.0 |
| created_at | 2025-10-05 18:47:35.49679+00 |
| updated_at | 2025-10-05 18:47:35.49679+00 |
| description | A library for working with env variables |
| homepage | |
| repository | https://github.com/sssemil/env_helpers |
| max_upload_size | |
| id | 1869313 |
| size | 4,148 |
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);
}