string_cache 0.5.1

A string interning library for Rust, developed as part of the Servo project.
Documentation
[package]

name = "string_cache"
version = "0.5.1"  # Also update README.md when making a semver-breaking change
authors = [ "The Servo Project Developers" ]
description = "A string interning library for Rust, developed as part of the Servo project."
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/string-cache"
documentation = "https://docs.rs/string_cache/"
build = "build.rs"

# Do not `exclude` ./string-cache-codegen because we want to include
# ./string-cache-codegen/shared.rs, and `include` is a pain to use
# (It has to be exhaustive.)
# This means that packages for this crate include some unused files,
# but they’re not too big so that shouldn’t be a problem.

[lib]
name = "string_cache"

[features]

# Enable event logging for generating benchmark traces.
# See examples/event-log.
log-events = []

# Use unstable features to optimize space and time (memory and CPU usage).
unstable = []

[dependencies]
precomputed-hash = "0.1"
lazy_static = "0.2"
serde = "0.9"
phf_shared = "0.7.4"
debug_unreachable = "0.1.1"
heapsize = { version = ">= 0.3, < 0.5", optional = true }
string_cache_shared = {path = "./shared", version = "0.3"}

[dev-dependencies]
rand = "0.3"

[build-dependencies]
string_cache_codegen = { version = "0.4", path = "./string-cache-codegen" }