enum-map 2.7.1

A map with C-like enum keys represented internally as an array
Documentation
# SPDX-FileCopyrightText: 2017 - 2023 Kamila Borowska <kamila@borowska.pw>
# SPDX-FileCopyrightText: 2021 Alex Sayers <alex@asayers.com>
#
# SPDX-License-Identifier: MIT OR Apache-2.0

[package]
name = "enum-map"
version = "2.7.1"
authors = ["Kamila Borowska <kamila@borowska.pw>"]
edition = "2021"
rust-version = "1.61"
repository = "https://codeberg.org/xfix/enum-map"
license = "MIT OR Apache-2.0"
description = "A map with C-like enum keys represented internally as an array"
keywords = ["data-structure", "no_std", "enum"]
categories = ["data-structures", "no-std"]
documentation = "https://docs.rs/enum-map"
readme = "README.md"

[badges]
maintenance = { status = "passively-maintained" }

[dependencies]
arbitrary = { version = "1.0.0", optional = true }
enum-map-derive = { version = "0.15.0", path = "../enum-map-derive" }
serde = { version = "1.0.16", optional = true, default-features = false }

[dev-dependencies]
bincode = "1.0.0"
serde = { version = "1.0.103", features = ["derive"] }
serde_test = "1.0.19"
serde_json = "1.0.2"

[package.metadata.docs.rs]
features = ["arbitrary", "serde"]