summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7d906e99063854be34e3c8ea0539081d495ac168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "collect-once-hashmap"
version = "0.2.0"
edition = "2018"
license = "MPL-2.0"

description = "A hashmap that can be collected only when there are unique keys in the iterator"
homepage    = "https://git.beyermatthi.as/collect-once-hashmap"
repository  = "https://git.beyermatthi.as/collect-once-hashmap"
readme      = "README.md"
keywords    = ["hashmap", "iterator"]
categories  = ["data-structures"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
thiserror = "1"