0.9.9: Rust update

This commit is contained in:
Chris Morgan 2015-01-21 16:17:18 +11:00
parent d96c4a32ac
commit 26ca567814
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "anymap"
version = "0.9.8"
version = "0.9.9"
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"

View file

@ -8,8 +8,8 @@
#[cfg(test)]
extern crate test;
use std::any::Any;
use std::intrinsics::{forget, TypeId};
use std::any::{Any, TypeId};
use std::mem::forget;
use std::collections::HashMap;
use std::collections::hash_map;
use std::hash::{Hasher, Writer};