Update metadata, 0.9.2.

This commit is contained in:
Chris Morgan 2014-11-28 17:18:16 +11:00
parent 77a6bf4569
commit 905800cc30
2 changed files with 9 additions and 8 deletions

View file

@ -1,8 +1,11 @@
[package] [package]
name = "anymap" name = "anymap"
version = "0.9.1" version = "0.9.2"
authors = ["Chris Morgan <me@chrismorgan.info>"] authors = ["Chris Morgan <me@chrismorgan.info>"]
description = "A safe and convenient store for one value of each type"
[lib] #documentation = "http://www.rust-ci.org/chris-morgan/anymap/doc/anymap/index.html"
name = "anymap" #homepage = "https://github.com/chris-morgan/anymap"
path = "src/lib.rs" repository = "https://github.com/chris-morgan/anymap"
readme = "README.md"
keywords = ["container", "data-structure", "map"]
license = "MIT/Apache-2.0"

View file

@ -1,7 +1,5 @@
//! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type. //! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type.
#![crate_name = "anymap"]
#![crate_type = "lib"]
#![feature(default_type_params, tuple_indexing)] #![feature(default_type_params, tuple_indexing)]
#![warn(unused_qualifications, non_upper_case_globals, #![warn(unused_qualifications, non_upper_case_globals,
variant_size_differences, unused_typecasts, variant_size_differences, unused_typecasts,