Cargo.toml 584 B

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