From dd76a62bddcb2dbe7d7ab55cb86855c6217d2cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Tue, 18 Jun 2024 17:16:59 +0200 Subject: [PATCH] xso: only warn on missing docs 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). --- xso/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xso/src/lib.rs b/xso/src/lib.rs index a5d291c..81d9b00 100644 --- a/xso/src/lib.rs +++ b/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