0.10.1: Rust update 0.10.1
authorChris Morgan <me@chrismorgan.info>
committerChris Morgan <me@chrismorgan.info>
Cargo.toml
src/lib.rs

index d1e54482b466baa623b12339378afaa0d04235a7..351851e4c266dd6f26a45f8116265f8746186e89 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "anymap"
-version = "0.10.0"
+version = "0.10.1"
 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"
index e38670b71c27947e85c9e3d2b582d303435f7ca2..a40da70aa34a834a714149556c40c148309acea7 100644 (file)
@@ -1,6 +1,6 @@
 //! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type.
 
-#![feature(core, std_misc, convert)]
+#![feature(core, std_misc)]
 #![cfg_attr(test, feature(test))]
 #![warn(missing_docs, unused_results)]
 
@@ -346,7 +346,7 @@ mod tests {
                 *v = new_v;
             }
         }
-        assert_eq!(map.get().unwrap(), &B(200));
+        assert_eq!(map.get::<B>().unwrap(), &B(200));
         assert_eq!(map.len(), 6);