Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
orium committed Oct 13, 2023
1 parent be09ea0 commit 6df660a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6df660a

Please sign in to comment.