parsers: re-export xso::error::FromElementError
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
653a10b170
commit
621c5882cf
2 changed files with 3 additions and 2 deletions
|
|
@ -119,6 +119,7 @@ XXXX-YY-ZZ RELEASER <admin@example.com>
|
||||||
to clone automatically when performance is not an issue (!497)
|
to clone automatically when performance is not an issue (!497)
|
||||||
- Fix compatibility to uuid 1.12
|
- Fix compatibility to uuid 1.12
|
||||||
- Implement Default for Tune
|
- Implement Default for Tune
|
||||||
|
- Re-export xso::error::FromElementError.
|
||||||
|
|
||||||
Version 0.21.0:
|
Version 0.21.0:
|
||||||
2024-07-25 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
2024-07-25 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||||
|
|
|
||||||
|
|
@ -35,8 +35,8 @@ pub use sha3;
|
||||||
|
|
||||||
// We normally only reexport entire crates, but xso is a special case since it uses proc macros
|
// We normally only reexport entire crates, but xso is a special case since it uses proc macros
|
||||||
// which require it to be directly imported as a crate. The only useful symbol we have to reexport
|
// which require it to be directly imported as a crate. The only useful symbol we have to reexport
|
||||||
// is its error type, which we expose in all of our return types.
|
// are its error types, which we expose in our return types.
|
||||||
pub use xso::error::Error;
|
pub use xso::error::{Error, FromElementError};
|
||||||
|
|
||||||
/// XML namespace definitions used through XMPP.
|
/// XML namespace definitions used through XMPP.
|
||||||
pub mod ns;
|
pub mod ns;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue