1
1

Cargo.toml 470 B

123456789101112131415161718
  1. [package]
  2. authors = ["Js2xxx"]
  3. edition = "2021"
  4. license = "MIT OR Apache-2.0"
  5. name = "archop"
  6. version = "0.1.0"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. # Local crates
  10. bitop_ex = {path = "../bitop_ex"}
  11. paging = {path = "../paging"}
  12. # External crates
  13. cfg-if = "1.0"
  14. num-traits = {version = "0.2", default-features = false}
  15. raw-cpuid = "10"
  16. spin = {version = "0.9", features = ["use_ticket_mutex"]}