summaryrefslogtreecommitdiffstats
path: root/renderer
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-09 20:58:45 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-09 20:58:45 +0200
commitf60884f6f8639f75258c264bf4a15591351ef05b (patch)
treeee0d8c6a8b29c648d9e6312bc8690f38fdf354f3 /renderer
parent89d9f1d7d2202029028a487df1dd11b0665a7517 (diff)
downloadiced-f60884f6f8639f75258c264bf4a15591351ef05b.tar.gz
iced-f60884f6f8639f75258c264bf4a15591351ef05b.tar.bz2
iced-f60884f6f8639f75258c264bf4a15591351ef05b.zip
Deny `broken_intradoc_links` and verify documentation in CI
Diffstat (limited to 'renderer')
-rw-r--r--renderer/src/lib.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/renderer/src/lib.rs b/renderer/src/lib.rs
index 7d1a02c2..6dcc0e96 100644
--- a/renderer/src/lib.rs
+++ b/renderer/src/lib.rs
@@ -1,3 +1,16 @@
+#![forbid(rust_2018_idioms)]
+#![deny(
+ unsafe_code,
+ unused_results,
+ clippy::extra_unused_lifetimes,
+ clippy::from_over_into,
+ clippy::needless_borrow,
+ clippy::new_without_default,
+ clippy::useless_conversion,
+ rustdoc::broken_intra_doc_links
+)]
+#![allow(clippy::inherent_to_string, clippy::type_complexity)]
+#![cfg_attr(docsrs, feature(doc_auto_cfg))]
pub mod compositor;
#[cfg(feature = "geometry")]