X-Git-Url: https://git.chrismorgan.info/anymap/blobdiff_plain/7719a1c61b08f7ca527e357e0b8795814a8c6e34..40e60cefd62236753888e887713692713683cdce:/Cargo.toml diff --git a/Cargo.toml b/Cargo.toml index b9ce2e1..aca1a64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,23 @@ [package] name = "anymap" -version = "0.12.1" +version = "1.0.0-beta.1" authors = ["Chris Morgan "] +edition = "2018" +rust-version = "1.36" description = "A safe and convenient store for one value of each type" repository = "https://github.com/chris-morgan/anymap" keywords = ["container", "any", "map"] -categories = ["rust-patterns", "data-structures"] +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] +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 }