Cargo.toml 740 B

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