[package] name = "stringstore" version = "0.1.5" edition = "2021" author = "kestrel " repository = "https://git.flying-kestrel.ca/kestrel/stringstore" license = "LGPL-3.0-only" keywords = ["string", "cache", "pool"] categories = ["caching", "memory-management"] description = "Cached dynamic set of strings with mildly expensive construction but cheap comparisons." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] serde = ["dep:serde"] [dependencies] serde = { version = "1", optional = true }