8 releases (breaking)

0.12.0 Oct 21, 2024
0.11.1 Dec 4, 2023
0.11.0 Oct 20, 2023
0.10.0 Jul 17, 2023
0.0.1 Jul 12, 2023

#55 in #config-toml

Download history 2868/week @ 2024-10-29 1878/week @ 2024-11-05 1399/week @ 2024-11-12 2699/week @ 2024-11-19 1955/week @ 2024-11-26 1834/week @ 2024-12-03 1655/week @ 2024-12-10 1898/week @ 2024-12-17 286/week @ 2024-12-24 1320/week @ 2024-12-31 2361/week @ 2025-01-07 3023/week @ 2025-01-14 2946/week @ 2025-01-21 2819/week @ 2025-01-28 3557/week @ 2025-02-04 4310/week @ 2025-02-11

14,235 downloads per month
Used in confik

MIT/Apache

35KB
742 lines

confik

crates.io Documentation MIT or Apache 2.0 licensed
Version dependency status Download

This crate provides a macro for creating configuration/settings structures and functions to read them from files and the environment.

Example

Assume that config.toml contains

host = "google.com"
username = "root"

and the environment contains

PASSWORD=hunter2

Then:

use confik::{Configuration, EnvSource, FileSource};

#[derive(Debug, PartialEq, Configuration)]
struct Config {
    host: String,
    username: String,

    #[confik(secret)]
    password: String,
}

fn main() {
    let config = Config::builder()
        .override_with(FileSource::new("config.toml"))
        .override_with(EnvSource::new().allow_secrets())
        .try_build()
        .unwrap();

    assert_eq!(
        config,
        Config {
            host: "google.com".to_string(),
            username: "root".to_string(),
            password: "hunter2".to_string(),
        }
    );
}

License

This project is licensed under either of

  • Apache License, Version 2.0
  • MIT License

at your option.

Dependencies

~0.5–1MB
~22K SLoC