enum-map 3.0.0

A map with C-like enum keys represented internally as an array
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.95"
name = "enum-map"
version = "3.0.0"
authors = ["Luna Borowska <luna@borowska.pw>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A map with C-like enum keys represented internally as an array"
documentation = "https://docs.rs/enum-map"
readme = "README.md"
keywords = [
    "data-structure",
    "no_std",
    "enum",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/xfix/enum-map"
resolver = "2"

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

[features]
arbitrary = ["dep:arbitrary"]
bytemuck = ["dep:bytemuck"]
default = ["derive"]
derive = ["dep:enum-map-derive"]
serde = ["dep:serde"]

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

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

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

[dependencies.arbitrary]
version = "1.4.2"
optional = true

[dependencies.bytemuck]
version = "1.25.2"
optional = true

[dependencies.enum-map-derive]
version = "1.0.0"
optional = true

[dependencies.serde]
version = "1.0.229"
optional = true
default-features = false

[dev-dependencies.bincode]
version = "2.0.1"
features = ["serde"]

[dev-dependencies.serde]
version = "1.0.229"
features = ["derive"]

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

[dev-dependencies.serde_test]
version = "1.0.177"