Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Sep 4, 2023
1 parent 4cae2ae commit 433d429
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#![warn(missing_docs)]
#![warn(clippy::debug_assert_with_mut_call)]

//! `hugr` is the Hierarchical Unified Graph Representation of quantum circuits
//! and operations in the Quantinuum ecosystem.
//!
Expand All @@ -10,6 +7,11 @@
//! structures.
//!

#![warn(missing_docs)]
// Unstable check, may cause false positives.
// https://github.com/rust-lang/rust-clippy/issues/5112
#![warn(clippy::debug_assert_with_mut_call)]

pub mod algorithm;
pub mod builder;
pub mod extension;
Expand Down

0 comments on commit 433d429

Please sign in to comment.