You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
610 B
25 lines
610 B
[package]
|
|
name = "hashlink"
|
|
version = "0.6.0"
|
|
authors = ["kyren <kerriganw@gmail.com>"]
|
|
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"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[badges]
|
|
circle-ci = { repository = "kyren/hashlink", branch = "master" }
|
|
|
|
[features]
|
|
serde_impl = ["serde"]
|
|
|
|
[dependencies]
|
|
hashbrown = "0.9.0"
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0"
|