Skip to content

Commit

Permalink
Turned on some lints and fixed crate docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
xacrimon committed Jun 10, 2020
1 parent 6eaa1b7 commit 3485e12
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
#![allow(unused_unsafe)]
#![warn(missing_docs)]
#![deny(clippy::correctness)]
#![warn(clippy::style)]
#![warn(clippy::complexity)]
#![warn(clippy::perf)]
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]

//! `dashmap` provides a relatively low level high performance concurrent hash map.
//! See struct level docs for more details.
//!
//! Serde is supported if the `serde` feature is enabled.
//! Then `DashMap` will implement `Serialize` and `Deserialize`.

///! `dashmap` provides a relatively low level high performance concurrent hash map.
///! See struct level docs for more details.
///!
///! Serde is supported if the `serde` feature is enabled.
///! Then `DashMap` will implement `Serialize` and `Deserialize`.
mod alloc;
mod element;
mod iter_shim;
Expand Down

0 comments on commit 3485e12

Please sign in to comment.