[package]
name = "string_cache"
version = "0.8.8"
authors = [ "The Servo Project Developers" ]
description = "A string interning library for Rust, developed as part of the Servo project."
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/string-cache"
documentation = "https://docs.rs/string_cache/"
edition = "2018"
[lib]
name = "string_cache"
[features]
serde_support = ["serde"]
default = ["serde_support"]
[dependencies]
precomputed-hash = "0.1"
serde = { version = "1", optional = true }
phf_shared = "0.11"
new_debug_unreachable = "1.0.2"
parking_lot = "0.12"
[[test]]
name = "small-stack"
harness = false
[workspace]
members = [
"string-cache-codegen",
"integration-tests",
]