aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: afab59a447a2dae7f1b12128e22b234e3cd0e132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "hashlink"
version = "0.8.1"
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.12.0"
serde = { version = "1.0", optional = true }

[dev-dependencies]
serde_test = "1.0"
fxhash = "0.2.1"