0.9.9: Rust update
This commit is contained in:
parent
d96c4a32ac
commit
26ca567814
|
@ -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"
|
||||
|
|
|
@ -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};
|
||||
|
|
Loading…
Reference in a new issue