string-interner 0.18.0

Efficient string interner with minimal memory footprint and fast access to the underlying strings.
Documentation
[badges.appveyor]
branch = "master"
repository = "Robbepop/string-interner"
service = "github"

[badges.travis-ci]
repository = "Robbepop/string-interner"

[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"

[[bench]]
name = "setup"
path = "benches/setup.rs"

[dependencies.hashbrown]
default-features = false
features = ["default-hasher", "raw-entry"]
version = "0.15.1"

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

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.fxhash]
version = "0.2"

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

[features]
backends = []
default = ["std", "serde", "inline-more", "backends"]
inline-more = ["hashbrown/inline-more"]
serde = ["dep:serde"]
std = ["serde?/std"]
test-allocations = []

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

[package]
authors = ["Robbepop"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures"]
description = """
Efficient string interner with minimal memory footprint
and fast access to the underlying strings.
"""
documentation = "https://docs.rs/string-interner"
edition = "2021"
keywords = ["interner", "intern", "string", "str", "symbol"]
license = "MIT/Apache-2.0"
name = "string-interner"
readme = "README.md"
repository = "https://github.com/robbepop/string-interner"
version = "0.18.0"

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

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