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.

16 lines
203B

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