Cargo.toml 424 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "generational-box"
  3. authors = ["Evan Almloff"]
  4. version = "0.0.0"
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. bumpalo = { version = "3.6" }
  9. parking_lot = "0.12.1"
  10. [dev-dependencies]
  11. rand = "0.8.5"
  12. criterion = "0.3"
  13. [features]
  14. default = ["check_generation"]
  15. check_generation = []
  16. [[bench]]
  17. name = "lock"
  18. harness = false