1 | [package] |
---|---|
2 | name = "linked_hash_set" |
3 | version = "0.1.4" |
4 | authors = ["Alex Butler <alexheretic@gmail.com>"] |
5 | edition = "2018" |
6 | description = "HashSet with insertion ordering" |
7 | repository = "https://github.com/alexheretic/linked-hash-set" |
8 | keywords = ["data-structures"] |
9 | license = "Apache-2.0" |
10 | readme="README.md" |
11 | |
12 | [dependencies] |
13 | linked-hash-map = "0.5.3" |
14 | serde = { version = "1", optional = true } |
15 | |
16 | [dev-dependencies] |
17 | serde_test = "1" |
18 |