diff --git a/parsers/ChangeLog b/parsers/ChangeLog index d1750000..4cabf6d3 100644 --- a/parsers/ChangeLog +++ b/parsers/ChangeLog @@ -119,6 +119,7 @@ XXXX-YY-ZZ RELEASER to clone automatically when performance is not an issue (!497) - Fix compatibility to uuid 1.12 - Implement Default for Tune + - Re-export xso::error::FromElementError. Version 0.21.0: 2024-07-25 Emmanuel Gil Peyrot diff --git a/parsers/src/lib.rs b/parsers/src/lib.rs index 47d1fe63..05ef0b28 100644 --- a/parsers/src/lib.rs +++ b/parsers/src/lib.rs @@ -35,8 +35,8 @@ pub use sha3; // 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 -// is its error type, which we expose in all of our return types. -pub use xso::error::Error; +// are its error types, which we expose in our return types. +pub use xso::error::{Error, FromElementError}; /// XML namespace definitions used through XMPP. pub mod ns;