Skip to content

Commit

Permalink
remove unstable lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Coats committed Sep 11, 2023
1 parent 7b3a9e5 commit 32ab6fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

// Ideally, this would be handled completely by CI, but there is a bug in `petgraph` that prevents us from doing that.
#![warn(missing_docs)]
#![deny(unreachable_pub, private_interfaces, private_bounds)]
#![deny(unreachable_pub)]
// TODO:
// #![deny(unreachable_pub, private_interfaces, private_bounds)]

//! The basic types and MongoDb queries for Chronicle.

Expand Down

0 comments on commit 32ab6fc

Please sign in to comment.