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