[package]
edition = "2024"
rust-version = "1.95"
name = "inturn"
version = "0.1.3"
authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"]
build = false
exclude = [
".github/",
"benches/",
"fuzz/",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient, performant, thread-safe bytes/string interning"
homepage = "https://github.com/danipopes/inturn"
documentation = "https://docs.rs/inturn"
readme = "README.md"
keywords = [
"symbol",
"interning",
"string-interning",
"hash",
"cache",
]
categories = ["caching"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/danipopes/inturn"
[features]
nightly = ["thread_local/nightly"]
[lib]
name = "inturn"
path = "src/lib.rs"
[dependencies.boxcar]
version = "0.2"
[dependencies.dashmap]
version = "6.0"
features = ["raw-api"]
default-features = false
[dependencies.hashbrown]
version = "0.14"
features = ["inline-more"]
default-features = false
[dependencies.stumpalo]
version = "0.2"
default-features = false
[dependencies.thread_local]
version = "1.1.8"
[profile.release]
lto = "thin"
panic = "abort"