[package]
edition = "2021"
name = "defaultdict"
version = "0.20.0"
authors = ["Mitchell Berendhuysen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hashmap implementation that mirrors the python defaultdict."
documentation = "https://docs.rs/defaultdict"
readme = "README.md"
license = "MIT"
repository = "https://github.com/MitchellBerend/defaultdict"
[lib]
name = "defaultdict"
path = "src/lib.rs"
[[test]]
name = "test_btree"
path = "tests/test_btree.rs"
[[test]]
name = "test_hashmap"
path = "tests/test_hashmap.rs"
[dependencies]