Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/anymap/Cargo.toml')
| -rw-r--r-- | crates/anymap/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/anymap/Cargo.toml b/crates/anymap/Cargo.toml new file mode 100644 index 0000000000..5f3976edcb --- /dev/null +++ b/crates/anymap/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "anymap" +version = "0.0.0" +description = "This crate is a port of only the necessary features from https://github.com/chris-morgan/anymap for use within rust-analyzer. Copyright © 2014–2022 Chris Morgan. COPYING: https://github.com/chris-morgan/anymap/blob/master/COPYING" + +authors.workspace = true +edition.workspace = true +license.workspace = true +rust-version.workspace = true + +[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.14.0", optional = true } |