summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 006eab1dced47e365f4692db68e13ba29ebf4d34 (plain)
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     = "Hard Disk and Solid State Disk tester"
version         = "1.6.0"
homepage        = "https://bues.ch/h/disktest"
license         = "GPL-2.0-or-later"
readme          = "README.md"
repository      = "https://bues.ch/cgit/disktest.git"
authors         = ["Michael Buesch <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            = "3.0.0"
crc             = "1.0.0"
hhmmss          = "0.1.0"
libc            = "0.2.0"
num_cpus        = "1.0.0"
rand            = "0.8.0"
rand_chacha     = "0.3.0"
rust-crypto     = "0.2.0"
signal-hook     = "0.3.0"
tempfile        = "3.0.0"

[target.'cfg(target_os="windows")'.dependencies]
winapi          = "0.3.0"

[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
bues.ch cgit interface