bimultimap 0.0.4

A Bidirectional multi map
Documentation
[badges.maintenance]
status = "passively-maintained"

[dependencies.hashbrown]
optional = true
version = "0.15"

[dependencies.mlua]
features = ["lua54"]
optional = true
version = "0.10"

[dependencies.serde]
optional = true
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[features]
btreemap = []
default = ["hashmap"]
hashbrown = ["dep:hashbrown"]
hashmap = []
mlua = ["dep:mlua"]
serde = ["dep:serde"]
thread-safe = []

[lib]
name = "bimultimap"
path = "src/lib.rs"

[package]
authors = ["tkr-sh"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "A Bidirectional multi map"
edition = "2024"
exclude = ["LICENSE.md"]
license = "LGPL-3.0-or-later"
name = "bimultimap"
readme = "README.md"
repository = "https://github.com/tkr-sh/bimultimap"
version = "0.0.4"

[[test]]
name = "entry"
path = "tests/entry.rs"

[[test]]
name = "insert"
path = "tests/insert.rs"

[[test]]
name = "iter"
path = "tests/iter.rs"

[[test]]
name = "remove"
path = "tests/remove.rs"

[[test]]
name = "serde"
path = "tests/serde.rs"

[[test]]
name = "set"
path = "tests/set.rs"