[package]
edition = "2024"
name = "typeslot"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statically assigned slot indices for types, grouped by a marker type."
readme = "README.md"
keywords = [
"typemap",
"type-id",
"slot",
"static",
"macro",
]
categories = [
"no-std",
"rust-patterns",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/voxell-tech/typeslot"
resolver = "2"
[lib]
name = "typeslot"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "multi_group"
path = "tests/multi_group.rs"
[[test]]
name = "name_clash"
path = "tests/name_clash.rs"
[[test]]
name = "single_group"
path = "tests/single_group.rs"
[dependencies.inventory]
version = "0.3"
[dependencies.typeslot_macros]
version = "0.2.0"