From bbb1452905a3f59e178031bb3eeca4d963e50394 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Sun, 12 Jan 2025 16:46:14 +0000 Subject: return error when attempt to read/write more than one root element in document --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 30e6051..26a3f78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,6 @@ pub mod declaration; pub mod element; +mod endable; mod error; pub mod reader; mod writer; -- cgit