Update metadata, 0.9.2.
This commit is contained in:
parent
77a6bf4569
commit
905800cc30
15
Cargo.toml
15
Cargo.toml
|
@ -1,8 +1,11 @@
|
|||
[package]
|
||||
name = "anymap"
|
||||
version = "0.9.1"
|
||||
authors = [ "Chris Morgan <me@chrismorgan.info>" ]
|
||||
|
||||
[lib]
|
||||
name = "anymap"
|
||||
path = "src/lib.rs"
|
||||
version = "0.9.2"
|
||||
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"
|
||||
#homepage = "https://github.com/chris-morgan/anymap"
|
||||
repository = "https://github.com/chris-morgan/anymap"
|
||||
readme = "README.md"
|
||||
keywords = ["container", "data-structure", "map"]
|
||||
license = "MIT/Apache-2.0"
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
//! 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)]
|
||||
#![warn(unused_qualifications, non_upper_case_globals,
|
||||
variant_size_differences, unused_typecasts,
|
||||
|
|
Loading…
Reference in a new issue