Cargo.toml 659 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "generational-box"
  3. authors = ["Evan Almloff"]
  4. version = "0.4.3"
  5. edition = "2018"
  6. description = "A box backed by a generational runtime"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. keywords = ["generational", "box", "memory", "allocator"]
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. bumpalo = { version = "3.6" }
  13. parking_lot = "0.12.1"
  14. [dev-dependencies]
  15. rand = "0.8.5"
  16. criterion = "0.3"
  17. [features]
  18. default = ["check_generation"]
  19. check_generation = []
  20. debug_borrows = []
  21. debug_ownership = []
  22. [[bench]]
  23. name = "lock"
  24. harness = false