[package]
name = "string-interner"
version = "0.17.0"
authors = ["Robbepop"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/robbepop/string-interner"
documentation = "https://docs.rs/string-interner"
keywords = ["interner", "intern", "string", "str", "symbol"]
description = """Efficient string interner with minimal memory footprint
and fast access to the underlying strings.
"""
categories = ["data-structures"]
edition = "2021"
[dependencies]
cfg-if = "1.0"
hashbrown = { version = "0.14.0", default-features = false, features = ["ahash"] }
serde = { version = "1.0", default-features = false, features = ["alloc"], optional = true }
[dev-dependencies]
serde_json = "1.0"
criterion = "0.5.1"
fxhash = "0.2"
[[bench]]
name = "bench"
harness = false
[features]
default = ["std", "serde-1", "inline-more", "backends"]
std = ["serde/std"]
serde-1 = ["serde"]
inline-more = ["hashbrown/inline-more"]
backends = []
test-allocations = []
[badges]
travis-ci = { repository = "Robbepop/string-interner" }
appveyor = { repository = "Robbepop/string-interner", branch = "master", service = "github" }