6 stable releases

2.3.0 Oct 6, 2024
2.2.0 Jul 26, 2024
2.1.1 Feb 16, 2024
1.0.0 Feb 6, 2024

#237 in Configuration

Download history 31/week @ 2024-07-29 1/week @ 2024-08-26 19/week @ 2024-09-16 12/week @ 2024-09-23 21/week @ 2024-09-30 170/week @ 2024-10-07 146/week @ 2024-10-14 31/week @ 2024-10-21 44/week @ 2024-10-28 98/week @ 2024-11-04 13/week @ 2024-11-11

199 downloads per month
Used in github-socialify-preview

MIT license

5KB
53 lines

Derive Config

My simple configuration library

use derive_config::DeriveTomlConfig;
use serde::{Deserialize, Serialize};

#[derive(Debug, Default, DeriveTomlConfig, Deserialize, Serialize)]
struct ExampleConfig {
    foo: String,
}

fn main() {
    let mut config = ExampleConfig::load().unwrap_or_default();
    println!("{}", config.foo);

    config.foo = String::from(if config.foo == "bar" { "baz" } else { "bar" });
    config.save().expect("Failed to save");
    println!("{}", config.foo);
}

Dependencies

~0.3–11MB
~70K SLoC