Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "disktest"
  3. description = "Hard Disk and Solid State Disk tester"
  4. version = "1.4.0"
  5. homepage = "https://bues.ch/h/disktest"
  6. license = "GPL-2.0-or-later"
  7. readme = "README.md"
  8. repository = "https://bues.ch/cgit/disktest.git"
  9. authors = ["Michael Buesch <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 = "2018"
  14. [dependencies]
  15. anyhow = "1.0.0"
  16. clap = "2.0.0"
  17. crc = "1.0.0"
  18. hhmmss = "0.1.0"
  19. libc = "0.2.0"
  20. num_cpus = "1.0.0"
  21. rand = "0.8.0"
  22. rand_chacha = "0.3.0"
  23. rust-crypto = "0.2.0"
  24. signal-hook = "0.3.0"
  25. tempfile = "3.0.0"
  26. [target.'cfg(target_os="windows")'.dependencies]
  27. winapi = "0.3.0"
  28. [profile.dev]
  29. lto = "thin"
  30. opt-level = 2
  31. [profile.release]
  32. lto = "thin"
  33. panic = "abort"
  34. [profile.test]
  35. lto = "thin"
  36. opt-level = 2
  37. [profile.bench]
  38. lto = "thin"
  39. # vim: ts=4 sw=4 expandtab