diff options
author | 2023-09-09 20:58:45 +0200 | |
---|---|---|
committer | 2023-09-09 20:58:45 +0200 | |
commit | f60884f6f8639f75258c264bf4a15591351ef05b (patch) | |
tree | ee0d8c6a8b29c648d9e6312bc8690f38fdf354f3 /style/src/lib.rs | |
parent | 89d9f1d7d2202029028a487df1dd11b0665a7517 (diff) | |
download | iced-f60884f6f8639f75258c264bf4a15591351ef05b.tar.gz iced-f60884f6f8639f75258c264bf4a15591351ef05b.tar.bz2 iced-f60884f6f8639f75258c264bf4a15591351ef05b.zip |
Deny `broken_intradoc_links` and verify documentation in CI
Diffstat (limited to 'style/src/lib.rs')
-rw-r--r-- | style/src/lib.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/style/src/lib.rs b/style/src/lib.rs index 286ff9db..0c555ed8 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -7,16 +7,18 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" )] +#![forbid(unsafe_code, rust_2018_idioms)] #![deny( unused_results, clippy::extra_unused_lifetimes, clippy::from_over_into, clippy::needless_borrow, clippy::new_without_default, - clippy::useless_conversion + clippy::useless_conversion, + missing_docs, + unused_results, + rustdoc::broken_intra_doc_links )] -#![deny(missing_docs, unused_results)] -#![forbid(unsafe_code, rust_2018_idioms)] #![allow(clippy::inherent_to_string, clippy::type_complexity)] pub use iced_core as core; |