Refresh Cargo.toml, README.md
authorChris Morgan <me@chrismorgan.info>
committerChris Morgan <me@chrismorgan.info>
Remove superfluous things, update useful things.
Cargo.toml
README.md

index 166549a3fe9b7e2a22bc240fb791a8a16c5ea2cc..b9ce2e1082024a950cb47d9ba78c1fa01ea893c1 100644 (file)
@@ -1,11 +1,9 @@
 [package]
 name = "anymap"
 version = "0.12.1"
-authors = ["Chris Morgan <me@chrismorgan.info>"]
+authors = ["Chris Morgan <rust@chrismorgan.info>"]
 description = "A safe and convenient store for one value of each type"
-documentation = "https://docs.rs/anymap"
-#homepage = "https://github.com/chris-morgan/anymap"
 repository = "https://github.com/chris-morgan/anymap"
-readme = "README.md"
-keywords = ["container", "data-structure", "map"]
+keywords = ["container", "any", "map"]
+categories = ["rust-patterns", "data-structures"]
 license = "BlueOak-1.0.0 OR MIT OR Apache-2.0"
index 358c262f2d514800fb2ae6fe664c1f5eed390732..cd88937d6d2c28ea466b83eeb982af452a0848f2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,7 +1,4 @@
-``AnyMap``, a safe and convenient store for one value of each type
-==================================================================
-
-[![Build Status](https://travis-ci.org/chris-morgan/anymap.svg?branch=master)](https://travis-ci.org/chris-morgan/anymap)
+# ``AnyMap``, a safe and convenient store for one value of each type
 
 If you’re familiar with Go and Go web frameworks, you may have come across the common “environment” pattern for storing data related to the request. It’s typically something like ``map[string]interface{}`` and is accessed with arbitrary strings which may clash and type assertions which are a little unwieldy and must be used very carefully. (Personally I would consider that it is just *asking* for things to blow up in your face.) In a language like Go, lacking in generics, this is the best that can be done; such a thing cannot possibly be made safe without generics.
 
@@ -13,13 +10,7 @@ The ``AnyMap`` type is a friendly wrapper around a ``HashMap<TypeId, Box<Any>>``
 
 What this means is that in an ``AnyMap`` you may store zero or one values for every type.
 
-Instructions
-------------
-
-Cargo all the way: it is `anymap` on crates.io.
-
-Unsafe code in this library
----------------------------
+## Unsafe code in this library
 
 This library uses a fair bit of unsafe code for several reasons: