Cargo.toml 735 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "generational-box"
  3. authors = ["Evan Almloff"]
  4. version = { workspace = true }
  5. edition = "2021"
  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. parking_lot = "0.12.1"
  13. [dev-dependencies]
  14. rand = "0.8.5"
  15. criterion = "0.3"
  16. [features]
  17. default = ["check_generation"]
  18. check_generation = []
  19. debug_borrows = []
  20. debug_ownership = []
  21. [[bench]]
  22. name = "lock"
  23. harness = false
  24. [package.metadata.docs.rs]
  25. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]