Env Settings

Env Settings is a Rust library that helps you to initialize structs using environment variables

This Rust library took inspiration from pydantic's BaseSettings Python class

Installation

sh cargo add env-settings cargo add env-settings-derive

Usage

When you add the EnvSettings derive to a struct, two methods are added to it

Basic

sh export name=paolo export age=42

```rs use envsettingsderive::EnvSettings;

[derive(EnvSettings)]

struct MyStruct { name: String, age: u8, }

fn main() { let mystruct = MyStruct::fromenv().unwrap(); asserteq!(mystruct.name, "paolo".tostring()); asserteq!(my_struct.age, 42);

let name = "luca";
let my_struct = MyStruct::new(Some(name.to_string()), None).unwrap();
assert_eq!(my_struct.name, name);
assert_eq!(my_struct.age, 42);

} ```

Advanced

sh export STRUCT_NAME=paolo echo "STRUCT_AGE=42\n" > .env

```rs use envsettingsderive::EnvSettings;

[derive(EnvSettings)]

[envsettings(caseinsensitive, filepath = ".env", prefix="STRUCT")]

struct MyStruct { name: String, age: u8, }

fn main() { let mystruct = MyStruct::fromenv().unwrap(); asserteq!(mystruct.name, "paolo".tostring()); asserteq!(my_struct.age, 42);

let name = "luca";
let my_struct = MyStruct::new(Some(name.to_string()), None).unwrap();
assert_eq!(my_struct.name, name);
assert_eq!(my_struct.age, 42);

} ```

Parameters

The current supported parameters are:

Variables resolution hierarchy

  1. Arguments passed to the new method (if using new).
  2. Environment variables
  3. Variables loaded from a file (e.g. .env)

Contribute

Before starting to work on a conribution please read:

Run tests

When testing run:

sh cargo test -- --test-threads=1

to prevent tests from competitively interacting with the same file

License

This project is licensed under the terms of the MIT or Apache 2.0 license.