xmpp-parsers: Stop reexporting extra symbols
Let’s continue reexporting jid and minidom, but not their inner pub items, users of this crate can go one level deeper if they need that. Only xso::error::Error is still useful to reexport, as this is part of the public API of all of our parsers.
This commit is contained in:
parent
ab35c234c8
commit
7b66de1166
79 changed files with 123 additions and 118 deletions
|
|
@ -8,10 +8,12 @@ use std::fmt::{Display, Formatter};
|
|||
use std::str::FromStr;
|
||||
|
||||
use minidom::{Element, IntoAttributeValue};
|
||||
use xso::{error::FromElementError, AsXml, FromXml};
|
||||
use xso::{
|
||||
error::{Error, FromElementError},
|
||||
AsXml, FromXml,
|
||||
};
|
||||
|
||||
use crate::ns::{self, XDATA_VALIDATE};
|
||||
use crate::Error;
|
||||
|
||||
/// Validation Method
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue