[package]
 name = "anymap"
-version = "0.11.1"
+version = "0.11.2"
 authors = ["Chris Morgan <me@chrismorgan.info>"]
 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"
 
 
 #[cfg(not(feature = "unstable"))]
 #[repr(C)]
-#[allow(raw_pointer_derive)]
 #[derive(Copy, Clone)]
 struct TraitObject {
     pub data: *mut (),
 
 //! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type.
 
-#![cfg_attr(feature = "unstable", feature(drain, hashmap_hasher, raw))]
+#![cfg_attr(feature = "unstable", feature(hashmap_hasher, raw))]
 #![cfg_attr(all(feature = "unstable", test), feature(test))]
 #![warn(missing_docs, unused_results)]
 
 
 use std::collections::hash_map::{self, HashMap};
 #[cfg(feature = "unstable")]
 use std::collections::hash_state::HashState;
-use std::default::Default;
 use std::hash::Hash;
 #[cfg(feature = "unstable")]
 use std::hash::Hasher;
-use std::iter::IntoIterator;
 #[cfg(feature = "unstable")]
 use std::mem;
 use std::ops::{Index, IndexMut};