Cargo.toml 777 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "disktest-rawio"
  3. version = "1.1.0"
  4. description = "Raw disk I/O for the disktest crate"
  5. readme = "README.md"
  6. homepage = { workspace = true }
  7. repository = { workspace = true }
  8. license = { workspace = true }
  9. authors = { workspace = true }
  10. categories = { workspace = true }
  11. keywords = { workspace = true }
  12. edition = { workspace = true }
  13. rust-version = { workspace = true }
  14. [dependencies]
  15. anyhow = { workspace = true }
  16. libc = { workspace = true }
  17. [target.'cfg(target_os="windows")'.dependencies]
  18. regex = { workspace = true }
  19. winapi = { workspace = true, features = ["std", "impl-default", "minwindef", "ntdef", "winerror", "errhandlingapi", "fileapi", "handleapi", "ioapiset", "winbase", "winnt", "winioctl"] }
  20. [lints.clippy]
  21. undocumented_unsafe_blocks = "warn"