config.rs 415 B

123456789101112131415
  1. extern crate toml;
  2. use std::fs::File;
  3. use std::io::prelude::*;
  4. pub type Config = toml::Value;
  5. pub fn load(path: &str) -> Config {
  6. let mut text = String::new();
  7. let mut f = File::open(path).unwrap();
  8. f.read_to_string(&mut text).ok().expect("Failed to load config");
  9. let value = toml::Parser::new(&text).parse();
  10. let value = value.unwrap_or(toml::Table::new());
  11. toml::Value::Table(value)
  12. }