From 6df660a952de01ade877156e33e51df769ac8629 Mon Sep 17 00:00:00 2001 From: Diogo Sousa Date: Fri, 13 Oct 2023 21:38:27 +0100 Subject: [PATCH] Fix warnings. --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 51031a6..8ee0b64 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,6 +20,9 @@ #![allow(clippy::type_complexity)] #![allow(clippy::enum_glob_use)] #![allow(clippy::type_repetition_in_bounds)] +// TODO This is only needed because `cargo-rdme` requires a path like `crate::⋯`. Once that limitation is +// lifted we can remove this. +#![allow(rustdoc::redundant_explicit_links)] // Note: If you change this remember to update `README.md`. To do so run `cargo rdme`. //! Rust Persistent Data Structures provides [fully persistent data structures](https://en.wikipedia.org/wiki/Persistent_data_structure) //! with structural sharing.