0.9.9: Rust update
This commit is contained in:
parent
d96c4a32ac
commit
26ca567814
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "anymap"
|
name = "anymap"
|
||||||
version = "0.9.8"
|
version = "0.9.9"
|
||||||
authors = ["Chris Morgan <me@chrismorgan.info>"]
|
authors = ["Chris Morgan <me@chrismorgan.info>"]
|
||||||
description = "A safe and convenient store for one value of each type"
|
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"
|
#documentation = "http://www.rust-ci.org/chris-morgan/anymap/doc/anymap/index.html"
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
extern crate test;
|
extern crate test;
|
||||||
|
|
||||||
use std::any::Any;
|
use std::any::{Any, TypeId};
|
||||||
use std::intrinsics::{forget, TypeId};
|
use std::mem::forget;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::collections::hash_map;
|
use std::collections::hash_map;
|
||||||
use std::hash::{Hasher, Writer};
|
use std::hash::{Hasher, Writer};
|
||||||
|
|
Loading…
Reference in a new issue