From 9d45230c17b2b7b90f99674f294beec5bb054e76 Mon Sep 17 00:00:00 2001 From: lumi Date: Mon, 22 May 2017 19:30:52 +0200 Subject: [PATCH] should re-export more things under the error module --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b6cf5e4..bc53cd5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidom" -version = "0.4.0" +version = "0.4.1" authors = ["lumi ", "Emmanuel Gil Peyrot ", "Bastien Orivel "] description = "A small, simple DOM implementation on top of xml-rs." homepage = "https://gitlab.com/lumi/minidom-rs" diff --git a/src/lib.rs b/src/lib.rs index 3539c99b..d51de436 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -73,6 +73,6 @@ pub mod convert; #[cfg(test)] mod tests; -pub use error::Error; +pub use error::{Error, ErrorKind, Result, ResultExt}; pub use element::{Element, Node, Children, ChildrenMut, ElementBuilder}; pub use convert::{IntoElements, IntoAttributeValue, ElementEmitter};