diff options
author | 2024-11-11 13:46:04 +0000 | |
---|---|---|
committer | 2024-11-11 13:46:04 +0000 | |
commit | e17f2d68765a0661478572a098ffdf6f1bd3d669 (patch) | |
tree | 224b8b5d43092a04d567aa8fd87f8ba02d3d33cd /src/xml/mod.rs | |
parent | 32545d8a6aa167143d0bd4d78f046017de54b614 (diff) | |
download | peanuts-e17f2d68765a0661478572a098ffdf6f1bd3d669.tar.gz peanuts-e17f2d68765a0661478572a098ffdf6f1bd3d669.tar.bz2 peanuts-e17f2d68765a0661478572a098ffdf6f1bd3d669.zip |
add non-streaming parsers
Diffstat (limited to 'src/xml/mod.rs')
-rw-r--r-- | src/xml/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xml/mod.rs b/src/xml/mod.rs index 0e84155..2d20ca0 100644 --- a/src/xml/mod.rs +++ b/src/xml/mod.rs @@ -4,6 +4,7 @@ use crate::error::Error; pub mod composers; pub mod parsers; +pub mod parsers_complete; /// [1] NSAttName ::= PrefixedAttName | DefaultAttName #[derive(Clone, Debug)] |