Skip to content

Commit

Permalink
Restore lib.rs directives
Browse files Browse the repository at this point in the history
  • Loading branch information
vlopes11 committed Mar 23, 2022
1 parent f33232d commit cb85944
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
//! is the same as the number of constraints (i.e., where the constraint
//! matrices are square). Furthermore, Marlin only supports instances where the
//! public inputs are of size one less than a power of 2 (i.e., 2^n - 1).
//#![deny(unused_import_braces, unused_qualifications, trivial_casts)]
//#![deny(trivial_numeric_casts, private_in_public)]
//#![deny(stable_features, unreachable_pub, non_shorthand_field_patterns)]
//#![deny(unused_attributes, unused_imports, unused_mut)]
//#![deny(renamed_and_removed_lints, stable_features, unused_allocation)]
//#![deny(unused_comparisons, bare_trait_objects, unused_must_use, const_err)]
#![deny(unused_import_braces, unused_qualifications, trivial_casts)]
#![deny(trivial_numeric_casts, private_in_public)]
#![deny(stable_features, unreachable_pub, non_shorthand_field_patterns)]
#![deny(unused_attributes, unused_imports, unused_mut)]
#![deny(renamed_and_removed_lints, stable_features, unused_allocation)]
#![deny(unused_comparisons, bare_trait_objects, unused_must_use, const_err)]
#![forbid(unsafe_code)]
#![allow(clippy::op_ref)]

Expand Down

0 comments on commit cb85944

Please sign in to comment.