use .env
as config file and parse environments to config struct.
```rust use dotenv::dotenv; use dotenv_config::EnvConfig;
struct Config {
#[envconfig(default = "192.168.2.1")]
serveraddr: String,
servermode: bool,
#[envconfig(name = "ZINCFOO", default = true)]
foo: bool,
#[envconfig(name = "ZINC_BAR", default = 123456)]
bar: Option
fn main() { dotenv().ok(); let cfg = Config::init().unwrap(); println!("{:#?}", cfg); } ```
you can use macro attribute set field attribute
.env
file config it.
ZINC_FOO=false
ZINC_BAR=8787878
default load environment key is: structName_fieldName
do UpperSnake, like above struct, default config key is:
CONFIG_SERVER_ADDR
CONFIG_SERVER_MODE
ZINC_FOO
ZINC_BAR
Allows the usage of external function to post-process the field value once it get parsed.
For example we can pass an environment variable with an aws ARN for a secret manager, so once the value of the arn
has been parsed, the added function specified in ext_post_with
will retrieve the value from aws.
```rust use dotenv::dotenv; use dotenv_config::EnvConfig;
fn ssm_client(s: String) -> Result struct Config {
#[envconfig(default = "192.168.2.1", ext=true, extpostwith="ssmclient")]
serveraddr: String,
servermode: bool,
#[envconfig(name = "ZINCFOO", default = true)]
foo: bool,
#[envconfig(name = "ZINCBAR", default = 123456)]
bar: Option async fn main() {
dotenv().ok();
let cfg = Config::init().await.unwrap();
println!("{:#?}", cfg);
}
``` The attribute [derive(Debug, EnvConfig)]
[tokio::main]
Attributes
ext: bool
enable or disable feature.ext_post_with: String
required if ext
is true.ext_post_with
receive a function name as a string, the function passed must have the following signature:rust
async fn func(_: String) -> Result<String, E>;