envutil 0.0.4

A rust library to encapsulate boilerplate code for handling environment variables
Documentation
  • Coverage
  • 0%
    0 out of 11 items documented0 out of 10 items with examples
  • Size
  • Source code size: 9.94 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.3 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • bpmason1/envutil-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bpmason1

gaia-rs

A rust library to encapsulate boilerplate code for handling environment variables at startup

sample usage

use envutil;

fn add_1() {
    let num: i64 = envutil::get_int("key"); // assume an environment "key" exists
    num + 1
}