Configurator makes statically-typed configuration for Rust easy.
main.rs:
```rust
extern crate serdederive; extern crate serdejson;
extern crate configurator;
use std::fs::File; use std::io::prelude::*;
struct Testing { a: String }
fn main() { match load_config!(Testing, "config.json") { Ok(c) => println!("{:?}", c), Err(e) => println!("Encountered an error: {}", e) } } ```
config.json:
json
{
"a": "Testing all the things"
}
Result:
Testing { a: "Testing all the things" }
Unfortunately, we currently rely on serde
for JSON-to-file conversions.