option_envc!() { /* proc-macro */ }
Expand description

Optionally inspects and encrypts an environment variable at compile time and decrypts at runtime.

If the named environment variable is present at compile time, this will expand into an expression of type Option<&'static str> whose value is Some of the value of the environment variable. If the environment variable is not present, then this will expand to None.

Use std::env::var instead if you want to read the value at runtime.

A compile time error is never emitted when using this macro regardless of whether the environment variable is present or not.

let key: Option<&'static str> = option_envc!("SECRET_KEY");
println!("the secret key might be: {key:?}");