stringleton 0.2.1

Extremely fast string interning library
Documentation
[package]
name = "stringleton"
version = "0.2.1"
edition = "2024"
authors = ["Simon Ask Ulsnes <simon@ulsnes.dk>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simonask/stringleton"
homepage = "https://docs.rs/stringleton/latest/stringleton"
keywords = ["string", "interner", "intern", "str", "symbol"]
description = "Extremely fast string interning library"

[lib]
path = "lib.rs"
crate-type = ["rlib"]

[dependencies]
ctor.workspace = true
linkme.workspace = true
stringleton-registry = { version = "0.2.1", path = "../stringleton-registry", default-features = false }

[dev-dependencies]
hashbrown.workspace = true

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"

[features]
default = ["std"]
std = ["alloc", "stringleton-registry/std"]
alloc = ["stringleton-registry/alloc"]
debug-assertions = ["stringleton-registry/debug-assertions"]
serde = ["stringleton-registry/serde"]
critical-section = ["stringleton-registry/critical-section"]
spin = ["stringleton-registry/spin"]

[lints]
workspace = true