attune 0.2.0

Runtime-mutable, persisted, observable configuration for Rust.
Documentation
1
2
3
4
5
6
7
8
9
use attune::Settings;

#[derive(Clone, Settings)]
struct Config {
    #[setting(persist, default = 80, deserialize_fallback = "not a path")]
    port: u16,
}

fn main() {}