env_var_helpers

Crates.ioenv_var_helpers
lib.rsenv_var_helpers
version0.1.0
created_at2025-04-14 05:32:08.491444+00
updated_at2025-04-14 05:32:08.491444+00
descriptionMacros and functions that help provide access to environment variable values.
homepagehttps://coruscateor.com/projects/env-var-helpers
repositoryhttps://github.com/coruscateor/env_var_helpers
max_upload_size
id1632420
size21,740
Paul Saunders (coruscateor)

documentation

README

Env Var Helpers

Crates.io License Downloads Docs Twitch Status

X | Twitch | Youtube | Mastodon | GitHub | GitHub Sponsors

Macros and functions that help provide access to environment variable values.




use env_var_helpers::cargo::crates::*;

println!("{}\n", cargo_env());

println!("{}\n", cargo_pkg_version_env());

println!("{}\n", cargo_pkg_name_env());

println!("{}\n", cargo_pkg_readme_env());


Compiler:

Build with the latest stable compiler.


Todo:

  • Add more documentation
  • Add more functions

Coding Style

This project uses a coding style the emphasises the use of white space over keeping the line and column counts as low as possible.

So this:

fn bar() {}

fn foo()
{

    bar();

}

Not this:

fn bar() {}

fn foo()
{
    bar();
}


License

Licensed under either of:

at your discretion


Contributing

Please clone the repository and create an issue explaining what feature or features you'd like to add or bug or bugs you'd like to fix and perhaps how you intend to implement these additions or fixes. Try to include details though it doesn't need to be exhaustive and we'll take it from there (dependant on availability).


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 2

cargo fmt