1.0.0-beta.2
[anymap] / Cargo.toml
index 4975bd05076345168a243cc0d8c5a00fab8802c6..43e7decd5278f6a7bac336ee25056ab84164685b 100644 (file)
@@ -1,14 +1,23 @@
 [package]
 name = "anymap"
 [package]
 name = "anymap"
-version = "0.10.2"
-authors = ["Chris Morgan <me@chrismorgan.info>"]
+version = "1.0.0-beta.2"
+authors = ["Chris Morgan <rust@chrismorgan.info>"]
+edition = "2018"
+rust-version = "1.36"
 description = "A safe and convenient store for one value of each type"
 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"
 repository = "https://github.com/chris-morgan/anymap"
-readme = "README.md"
-keywords = ["container", "data-structure", "map"]
-license = "MIT/Apache-2.0"
+keywords = ["container", "any", "map"]
+categories = ["rust-patterns", "data-structures", "no-std"]
+license = "BlueOak-1.0.0 OR MIT OR Apache-2.0"
+include = ["/README.md", "/COPYING", "/CHANGELOG.md", "/src"]
+
+[package.metadata.docs.rs]
+all-features = true
 
 [features]
 
 [features]
-clone = []
+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 }