[package]
edition = "2024"
name = "xgx_intern"
version = "0.6.4"
authors = ["Cody Wyatt Neiman (xangelix) <neiman@cody.to>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, Hash-based value interner with custom handle types."
documentation = "https://docs.rs/xgx_intern"
readme = "README.md"
keywords = [
"interner",
"internment",
"deduplication",
"hashing",
"no_std",
]
categories = [
"data-structures",
"algorithms",
"memory-management",
"rust-patterns",
"no-std",
]
license = "MIT"
repository = "https://github.com/xangelix/xgx_intern"
[features]
default = [
"std",
"compact_str",
]
std = [
"indexmap/std",
"thiserror/std",
]
[lib]
name = "xgx_intern"
path = "src/lib.rs"
[dependencies.compact_str]
version = "0.10"
optional = true
default-features = false
[dependencies.indexmap]
version = "2"
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dev-dependencies.ahash]
version = "0.8"
[dev-dependencies.rustc-hash]
version = "2"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"