-
-
Save mammothbane/0f7a53492c8fc70c90c7b87a2e212d7c to your computer and use it in GitHub Desktop.
dotenv! macro hangs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MY_KEY=MY_VALUE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "dotenv_breaks" | |
version = "0.1.0" | |
authors = ["Nathan Perry <[email protected]>"] | |
[dependencies] | |
dotenv_codegen = "0.11.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] extern crate dotenv_codegen; | |
fn main() { | |
println!(dotenv!("MY_KEY")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment