[package] name = "polystore" version = "0.1.0" authors = ["Diggory Hardy "] edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/kas-gui/polystore" documentation = "https://docs.rs/polystore" description = """ Polymorphic data store """ keywords = ["poly", "polymorphic"] categories = ["data-structures"] [package.metadata.docs.rs] features = ["fxhash"] rustdoc-args = ["--cfg", "doc_cfg"] # To build locally: # RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --features=fxhash --no-deps --open [features] # Support FxHashMap fxhash = ["rustc-hash"] [dependencies] rustc-hash = { version = "1.1.0", optional = true }