FIX: Fix unstable-const-fn feature

This commit is contained in:
bluss
2021-03-23 18:07:25 +01:00
parent 6daae9ae68
commit f2e9378fd6
+1 -1
View File
@@ -26,7 +26,7 @@
//! //!
#![doc(html_root_url="https://docs.rs/arrayvec/0.5/")] #![doc(html_root_url="https://docs.rs/arrayvec/0.5/")]
#![cfg_attr(not(feature="std"), no_std)] #![cfg_attr(not(feature="std"), no_std)]
#![cfg_attr(feature="unstable-const-fn", feature(const_fn))] #![cfg_attr(feature="unstable-const-fn", feature(const_fn, const_maybe_uninit_assume_init))]
#[cfg(feature="serde")] #[cfg(feature="serde")]
extern crate serde; extern crate serde;