Skip to content

Commit

Permalink
Use min_const_generics
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Aug 9, 2020
1 parent f7e01ef commit 0e23d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@

#![no_std]
#![cfg_attr(feature = "union", feature(untagged_unions))]
#![cfg_attr(feature = "specialization", allow(incomplete_features))]
#![cfg_attr(feature = "specialization", feature(specialization))]
#![cfg_attr(feature = "may_dangle", feature(dropck_eyepatch))]
#![cfg_attr(feature = "const_generics", allow(incomplete_features))]
#![cfg_attr(feature = "const_generics", feature(const_generics))]
#![cfg_attr(feature = "const_generics", feature(min_const_generics))]
#![deny(missing_docs)]

#[doc(hidden)]
Expand Down

0 comments on commit 0e23d2a

Please sign in to comment.