Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dash-spv/clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
disallowed-types = [
{ path = "std::sync::Mutex", reason = "Use tokio::sync::Mutex instead" },
{ path = "std::sync::RwLock", reason = "Use tokio::sync::RwLock instead" }
]
2 changes: 2 additions & 0 deletions dash-spv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
//! - **Persistent storage**: Save and restore state between runs
//! - **Extensive logging**: Built-in tracing support for debugging

#![deny(clippy::disallowed_types)]

#[cfg(any(test, feature = "test-utils"))]
pub mod test_utils;

Expand Down
Loading