#env-file #env #dotenv #environment #compile-time #settings #proc-macro

macro load-dotenv

This is a small procedural macro to load your .env file at compile time

3 releases

0.1.2 Jan 4, 2021
0.1.1 Feb 15, 2019
0.1.0 Feb 15, 2019

#53 in #dotenv

Download history 48/week @ 2023-11-30 43/week @ 2023-12-07 63/week @ 2023-12-14 53/week @ 2023-12-21 32/week @ 2023-12-28 45/week @ 2024-01-04 103/week @ 2024-01-11 76/week @ 2024-01-18 38/week @ 2024-01-25 38/week @ 2024-02-01 50/week @ 2024-02-08 81/week @ 2024-02-15 98/week @ 2024-02-22 88/week @ 2024-02-29 155/week @ 2024-03-07 74/week @ 2024-03-14

433 downloads per month

MIT license

4KB

load-dotenv

This is a small procedural macro to load your .env file at compile time. That way you can use std::env! to load environment variables and fail the build if a variable is missing.

All it does is call the dotenv crate.

Example

.env file:

KEY=value

Rust:

use load_dotenv::load_dotenv;

load_dotenv!();

fn main() {
    assert_eq!("value", env!("KEY"));
}

License: MIT


lib.rs:

This is a small procedural macro to load your .env file at compile time. That way you can use std::env! to load environment variables and fail the build if a variable is missing.

All it does is call the dotenv crate.

Example

.env file:

KEY=value

Rust:

use load_dotenv::load_dotenv;

load_dotenv!();

fn main() {
    assert_eq!("value", env!("KEY"));
}

Dependencies

~34KB