We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a315337 commit 37f235bCopy full SHA for 37f235b
src/lib.rs
@@ -1,3 +1,19 @@
1
+#![doc(
2
+ html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
3
+)]
4
+#![deny(
5
+ missing_debug_implementations,
6
+ missing_docs,
7
+ unused_results,
8
+ clippy::extra_unused_lifetimes,
9
+ clippy::from_over_into,
10
+ clippy::needless_borrow,
11
+ clippy::new_without_default,
12
+ clippy::useless_conversion
13
14
+#![forbid(unsafe_code, rust_2018_idioms)]
15
+#![allow(clippy::inherent_to_string, clippy::type_complexity)]
16
+#![cfg_attr(docsrs, feature(doc_cfg))]
17
pub mod timeline;
18
pub mod widget;
19
0 commit comments