aca1a6444a0a83ebc7e8d188a07c321db5d9c732
[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 [package.metadata.docs.rs]
15 all-features = true
16
17 [features]
18 default = ["std"]
19 std = []
20
21 [dependencies]
22 # 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.
23 hashbrown = { version = ">=0.1.1, <0.13", optional = true }