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
sh
cargo add env-settings
cargo add env-settings-derive
When you add the EnvSettings
derive to a struct
, two methods are added to it
rs
fn from_env() -> env_settings_utils::EnvSettingsResult<Self>
It creates a new instance using just the environment variables. If something fails, it returns an env_settings_utils::EnvSettingsError
error
rs
fn new(...) -> env_settings_utils::EnvSettingsResult<Self>
It creates a new instance using a combination of environment variables and parameters. More in detail, every field value can be passed as parameter wrapped in an Option
object. Then if the parameter is Some
, it is used, otherwise the value is recoved from the environment variables. If something fails, it returns an env_settings_utils::EnvSettingsError
error
sh
export name=paolo
export age=42
```rs use envsettingsderive::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);
} ```
sh
export STRUCT_NAME=paolo
echo "STRUCT_AGE=42\n" > .env
```rs use envsettingsderive::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);
} ```
The current supported parameters are:
case_insensitive
: add it if the environment variables matching should be case insensitivedelay
: add it to delay the lookup for environment variables from compilation time to run timefile_path
: add it to specify a file path to read to add some environment variables (e.g. .env
)prefix
: add it to specify a prefix to add to the name of the struct fields before matching the environment variablesnew
method (if using new
)..env
)Before starting to work on a conribution please read:
When testing run:
sh
cargo test -- --test-threads=1
to prevent tests from competitively interacting with the same file
This project is licensed under the terms of the MIT or Apache 2.0 license.