xso: only warn on missing docs

Jonas Schäfer created

The CI makes that an error anyway, and this allows developers to start
sketching stuff without running into errors all the time (and then
adding `/// TODO` to work around them).

Change summary

xso/src/lib.rs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Detailed changes

xso/src/lib.rs 🔗

@@ -1,4 +1,5 @@
-#![forbid(missing_docs, unsafe_code)]
+#![forbid(unsafe_code)]
+#![warn(missing_docs)]
 /*!
 # XML Streamed Objects -- serde-like parsing for XML