[package] name = "hashlink" version = "0.9.1" authors = ["kyren "] edition = "2018" description = "HashMap-like containers that hold their key-value pairs in a user controllable order" repository = "https://github.com/kyren/hashlink" documentation = "https://docs.rs/hashlink" readme = "README.md" keywords = ["data-structures", "no_std"] license = "MIT OR Apache-2.0" [badges] circle-ci = { repository = "kyren/hashlink", branch = "master" } [features] serde_impl = ["serde"] [dependencies] hashbrown = { version = "0.14.3", default-features = false, features = ["ahash", "inline-more"] } serde = { version = "1.0", default-features = false, optional = true } [dev-dependencies] serde_test = "1.0" rustc-hash = "1.1"