1
1

Cargo.toml 416 B

12345678910111213141516
  1. [package]
  2. authors = ["Js2xxx"]
  3. edition = "2021"
  4. license = "MIT OR Apache-2.0"
  5. name = "pmm"
  6. version = "0.1.0"
  7. [dependencies]
  8. # Local crates
  9. bitop_ex = {path = "../bitop_ex"}
  10. iter_ex = {path = "../iter_ex"}
  11. paging = {path = "../paging"}
  12. # External crates
  13. intrusive-collections = {version = "0.9", default-features = false, features = ["nightly"]}
  14. log = "0.4"
  15. spin = {version = "0.9", features = ["use_ticket_mutex"]}