Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "disktest"
  3. description = "Solid State Disk, Hard Disk and other storage media tester"
  4. version = "1.10.0"
  5. homepage = "https://bues.ch/h/disktest"
  6. repository = "https://github.com/mbuesch/disktest"
  7. license = "GPL-2.0-or-later"
  8. readme = "README.md"
  9. authors = ["Michael Büsch <m@bues.ch>"]
  10. categories = ["command-line-utilities", "filesystem", "hardware-support"]
  11. keywords = ["disk", "HDD", "SSD", "flash", "SD-card"]
  12. exclude = ["/maintenance/", "/testfile*"]
  13. edition = "2021"
  14. [dependencies]
  15. anyhow = "1.0.0"
  16. clap = "4.0.0"
  17. crc = "1.0.0"
  18. hhmmss = "0.1.0"
  19. libc = "0.2.0"
  20. rand = "0.8.0"
  21. rand_chacha = "0.3.0"
  22. regex = "1.7.0"
  23. ring = "0.16.0"
  24. signal-hook = "0.3.0"
  25. tempfile = "3.0.0"
  26. [target.'cfg(target_os="windows")'.dependencies]
  27. winapi = { version = "0.3.0", features = ["std", "impl-default", "minwindef", "ntdef", "winerror", "errhandlingapi", "fileapi", "handleapi", "ioapiset", "winbase", "winnt", "winioctl"] }
  28. [profile.dev]
  29. lto = "thin"
  30. opt-level = 2
  31. [profile.release]
  32. lto = "thin"
  33. [profile.test]
  34. lto = "thin"
  35. opt-level = 2
  36. [profile.bench]
  37. lto = "thin"
  38. # vim: ts=4 sw=4 expandtab