should re-export more things under the error module

This commit is contained in:
lumi 2017-05-22 19:30:52 +02:00
parent 508c971416
commit 9d45230c17
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minidom" 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>"] 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." description = "A small, simple DOM implementation on top of xml-rs."
homepage = "https://gitlab.com/lumi/minidom-rs" homepage = "https://gitlab.com/lumi/minidom-rs"

View file

@ -73,6 +73,6 @@ pub mod convert;
#[cfg(test)] mod tests; #[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 element::{Element, Node, Children, ChildrenMut, ElementBuilder};
pub use convert::{IntoElements, IntoAttributeValue, ElementEmitter}; pub use convert::{IntoElements, IntoAttributeValue, ElementEmitter};