From: Chris Morgan Date: Wed, 24 Jun 2015 00:08:58 +0000 (+1000) Subject: 0.11.1: Rust update for unstable. X-Git-Tag: 0.11.1 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/b3def7765767c9806a2c4db15b126392e540a19a 0.11.1: Rust update for unstable. --- diff --git a/Cargo.toml b/Cargo.toml index 7393272..455611f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anymap" -version = "0.11.0" +version = "0.11.1" authors = ["Chris Morgan "] description = "A safe and convenient store for one value of each type" #documentation = "http://www.rust-ci.org/chris-morgan/anymap/doc/anymap/index.html" diff --git a/src/lib.rs b/src/lib.rs index d856ea6..5095829 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type. -#![cfg_attr(feature = "unstable", feature(core, std_misc))] +#![cfg_attr(feature = "unstable", feature(drain, hashmap_hasher, raw))] #![cfg_attr(all(feature = "unstable", test), feature(test))] #![warn(missing_docs, unused_results)]