1
1

Cargo.toml 377 B

1234567891011121314
  1. [package]
  2. authors = ["Js2xxx"]
  3. edition = "2021"
  4. license = "MIT OR Apache-2.0"
  5. name = "collection_ex"
  6. version = "0.1.0"
  7. [dependencies]
  8. # Local crates
  9. bitop_ex = {path = "../bitop_ex"}
  10. iter_ex = {path = "../iter_ex"}
  11. # External crates
  12. bitvec = {version = "1.0", default-features = false, features = ["atomic", "alloc"]}
  13. spin = {version = "0.9", features = ["use_ticket_mutex"]}