#config-parser #config-toml #parser #utility #toml-parser #serde

confik

A library for reading application configuration split across multiple sources

17 releases

0.12.0 Oct 21, 2024
0.11.7 Mar 23, 2024
0.11.4 Dec 4, 2023
0.11.3 Nov 12, 2023
0.10.0 Jul 17, 2023

#39 in Configuration

Download history 1567/week @ 2024-07-19 2632/week @ 2024-07-26 1798/week @ 2024-08-02 2159/week @ 2024-08-09 1547/week @ 2024-08-16 1933/week @ 2024-08-23 2020/week @ 2024-08-30 2425/week @ 2024-09-06 1842/week @ 2024-09-13 2780/week @ 2024-09-20 3039/week @ 2024-09-27 2704/week @ 2024-10-04 2496/week @ 2024-10-11 3262/week @ 2024-10-18 2560/week @ 2024-10-25 2696/week @ 2024-11-01

11,493 downloads per month

MIT/Apache

63KB
1.5K SLoC

confik

crates.io Documentation dependency status MIT or Apache 2.0 licensed
CI codecov Version 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

~2.7–5MB
~91K SLoC