Cargo.toml 611 B

12345678910111213141516171819202122232425
  1. [package]
  2. authors = ["Js2xxx"]
  3. edition = "2021"
  4. license = "MIT OR Apache-2.0"
  5. name = "heap"
  6. version = "0.1.0"
  7. [features]
  8. default = ["global"]
  9. global = []
  10. tcache = ["global"]
  11. [dependencies]
  12. # Local crates
  13. bitop_ex = {path = "../bitop_ex"}
  14. paging = {path = "../paging"}
  15. pmm = {path = "../pmm"}
  16. # External crates
  17. array-macro = "2.1"
  18. bitvec = {version = "1.0", default-features = false, features = ["atomic"]}
  19. cfg-if = "1.0"
  20. intrusive-collections = {version = "0.9", default-features = false, features = ["nightly"]}
  21. log = "0.4"
  22. spin = {version = "0.9", features = ["use_ticket_mutex"]}
  23. static_assertions = "1.1"