mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
rename namespaces mod to namespace_set
This commit is contained in:
parent
7297dbc5fd
commit
b141559081
3 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ use std::str::FromStr;
|
|||
use std::slice;
|
||||
|
||||
use convert::{IntoElements, IntoAttributeValue, ElementEmitter};
|
||||
use namespaces::NamespaceSet;
|
||||
use namespace_set::NamespaceSet;
|
||||
|
||||
/// Escape XML text
|
||||
pub fn write_escaped<W: Write>(writer: &mut W, input: &str) -> Result<()> {
|
||||
|
|
|
@ -70,7 +70,7 @@ extern crate quick_xml;
|
|||
pub mod error;
|
||||
pub mod element;
|
||||
pub mod convert;
|
||||
mod namespaces;
|
||||
mod namespace_set;
|
||||
|
||||
#[cfg(test)] mod tests;
|
||||
|
||||
|
|
Loading…
Reference in a new issue