should re-export more things under the error module
lumi
created
Change summary
Cargo.toml | 2 +-
src/lib.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Detailed changes
@@ -1,6 +1,6 @@
[package]
name = "minidom"
-version = "0.4.0"
+version = "0.4.1"
authors = ["lumi <lumi@pew.im>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "Bastien Orivel <eijebong+minidom@bananium.fr>"]
description = "A small, simple DOM implementation on top of xml-rs."
homepage = "https://gitlab.com/lumi/minidom-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};