2014-06-25 14:44:35 +10:00
[ package ]
name = "anymap"
2017-01-20 23:43:13 +11:00
version = "0.12.1"
2022-01-25 12:56:30 +11:00
authors = [ "Chris Morgan <rust@chrismorgan.info>" ]
2022-01-25 19:41:10 +11:00
edition = "2018"
2022-01-25 21:24:48 +11:00
rust-version = "1.36"
2014-11-28 17:18:16 +11:00
description = "A safe and convenient store for one value of each type"
repository = "https://github.com/chris-morgan/anymap"
2022-01-25 12:56:30 +11:00
keywords = [ "container" , "any" , "map" ]
2022-01-25 21:24:48 +11:00
categories = [ "rust-patterns" , "data-structures" , "no-std" ]
2022-01-25 12:40:30 +11:00
license = "BlueOak-1.0.0 OR MIT OR Apache-2.0"
2022-01-25 21:24:48 +11:00
include = [ "/README.md" , "/COPYING" , "/CHANGELOG.md" , "/src" ]
[ features ]
default = [ "std" ]
std = [ ]
[ dependencies ]
# The hashbrown feature, disabled by default, is exposed under different stability guarantees than the usual SemVer ones: by preference the version range will only be extended, but it may be shrunk in a MINOR release. See README.md.
hashbrown = { version = ">=0.1.1, <0.13" , optional = true }