lasso 0.7.3

A multithreaded and single threaded string interner that allows strings to be cached with a minimal memory footprint, associating them with a unique key that can be used to retrieve them at any time.
Documentation
[[bench]]
harness = false
name = "multi_threaded"
path = "benches/multi_threaded.rs"
required-features = ["multi-threaded"]

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

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

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

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

[dependencies.abomonation]
default-features = false
optional = true
version = "0.7.3"

[dependencies.ahash]
default-features = false
features = ["no-rng"]
optional = true
version = "0.8.0"

[dependencies.dashmap]
features = ["raw-api"]
optional = true
version = "6.0.0"

[dependencies.deepsize]
default-features = false
optional = true
version = "0.2.0"

[dependencies.hashbrown]
features = ["raw"]
version = "0.14.0"

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

[dev-dependencies.ahash]
default-features = false
version = "0.8.0"

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

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

[dev-dependencies.lazy_static]
version = "1.4.0"

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

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
required-features = ["multi-threaded"]

[features]
ahasher = ["ahash"]
default = []
inline-more = []
multi-threaded = ["dashmap"]
no-std = ["ahasher"]
serialize = ["serde", "hashbrown/serde"]

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

[package]
authors = ["Chase Wilson <contact@chasewilson.dev>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "concurrency", "no-std"]
description = """
A multithreaded and single threaded string interner that allows strings to be cached with a
minimal memory footprint, associating them with a unique key that can be used to retrieve them at any time.
"""
documentation = "https://docs.rs/lasso"
edition = "2021"
keywords = ["interner", "intern", "string", "str", "symbol"]
license = "MIT OR Apache-2.0"
name = "lasso"
readme = "README.md"
repository = "https://github.com/Kixiron/lasso"
version = "0.7.3"

[package.metadata.docs.rs]
features = ["multi-threaded", "serialize"]
rustc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu"]

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