konfig-rust-derive 0.1.1

A derive macro for the konfig-rust library, allowing shorthand implementation of the KonfigSection trait
Documentation

konfig-rust-derive is a derive macro helper for konfig-rust

It allows for quickly implementing the KonfigSection trait for structs with default behaviour.

Example:

#[derive(KonfigSection)]
struct Config {
    name: String,
    age: u32,
}