02d16c7c7f78b7946ae5f4d9b137957354825f8b
[anymap] / Cargo.toml
1 [package]
2 name = "anymap"
3 version = "1.0.0-beta.1"
4 authors = ["Chris Morgan <rust@chrismorgan.info>"]
5 edition = "2018"
6 rust-version = "1.36"
7 description = "A safe and convenient store for one value of each type"
8 repository = "https://github.com/chris-morgan/anymap"
9 keywords = ["container", "any", "map"]
10 categories = ["rust-patterns", "data-structures", "no-std"]
11 license = "BlueOak-1.0.0 OR MIT OR Apache-2.0"
12 include = ["/README.md", "/COPYING", "/CHANGELOG.md", "/src"]
13
14 [features]
15 default = ["std"]
16 std = []
17
18 [dependencies]
19 # 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.
20 hashbrown = { version = ">=0.1.1, <0.13", optional = true }