Chat with us: Discord
Zero-boilerplate configuration management.
Focus on storing the right data, instead of worrying about how to store it.
```rust
extern crate serde_derive;
struct MyConfig { version: u8, api_key: String, }
fn main() -> Result<(), ::std::io::Error> { let cfg: MyConfig = confy::load("my-app-name")?; dbg!(cfg); Ok(()) } ```