Cargo.toml 870 B

123456789101112131415161718192021
  1. [package]
  2. name = "kdepends"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "需要导出的依赖项(为保持内核依赖版本与调试器依赖项版本相同,因此把公共依赖项写在这里)"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. crc = { path = "../crc" }
  9. memoffset = "0.9.0"
  10. ringbuffer = "0.15.0"
  11. xarray = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/xarray", rev = "de93b57c34", features = ["slab-friendly"] }
  12. another_ext4 = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/another_ext4.git", rev = "bf782ff294", default-features = false }
  13. # 一个无锁MPSC队列
  14. [dependencies.thingbuf]
  15. git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/thingbuf.git"
  16. rev = "2dded730c3"
  17. default-features = false
  18. features = ["alloc", "static"]