Removed stablalised feature flag for `const_fn_trait_bound`

Bumped bugfix version: Commit f98a5fc042 fixes deriving `Default` for types containing `smallmap::Map`.

Fortune for smallmap's current commit: Small curse − 小凶
master
Avril 2 years ago
parent ad94525f20
commit 1a58d3a734
Signed by: flanchan
GPG Key ID: 284488987C31F630

@ -4,7 +4,7 @@ description = "Small byte-sized generic key-value map type"
keywords = ["map", "table", "small", "key", "value"]
repository = "https://github.com/notflan/smallmap"
homepage= "https://git.flanchan.moe/flanchan/smallmap"
version = "1.3.3"
version = "1.3.4"
authors = ["Avril <flanchan@cumallover.me>"]
edition = "2018"
license = "MIT"

@ -29,7 +29,6 @@
#![cfg_attr(nightly, feature(test))]
#![cfg_attr(nightly, feature(drain_filter))]
#![cfg_attr(nightly, feature(const_fn_trait_bound))]
#![cfg_attr(nightly, feature(never_type))]
#[cfg(nightly)] extern crate test;
@ -451,6 +450,7 @@ where K: Collapse
impl<K: Collapse, V> Default for Map<K,V>
{
#[inline]
fn default() -> Self
{
Self::new()

Loading…
Cancel
Save