X-Git-Url: https://git.chrismorgan.info/anymap/blobdiff_plain/26ca567814442053601fe8692b872fe8fefc577f..0a1c85f8655a71b995d228ed0c9496f732268c5b:/Cargo.toml diff --git a/Cargo.toml b/Cargo.toml index b514e92..011cbe2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,20 @@ [package] name = "anymap" -version = "0.9.9" -authors = ["Chris Morgan "] +version = "0.12.1" +authors = ["Chris Morgan "] +edition = "2018" +rust-version = "1.36" 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" -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"] + +[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 }