You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
208B

  1. use tera;
  2. use toml;
  3. error_chain! {
  4. errors {
  5. }
  6. links {
  7. Tera(tera::Error, tera::ErrorKind);
  8. }
  9. foreign_links {
  10. Io(::std::io::Error);
  11. Toml(toml::de::Error);
  12. }
  13. }