summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: cdb95406e9f0c16340c62e85f5b9c1882fb1c62b (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
[package]
name            = "disktest"
description     = "Hard Disk and Solid State Disk tester"
version         = "1.1.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         = "2018"

[dependencies]
clap            = "2.33.3"
crc             = "1.8.1"
libc            = "0.2.80"
num_cpus        = "1.13.0"
rust-crypto     = "0.2.36"
signal-hook     = "0.1.16"
tempfile        = "3.1.0"

[profile.dev]
lto             = "thin"
opt-level       = 2

[profile.release]
lto             = "thin"
panic           = "abort"

[profile.test]
lto             = "thin"
opt-level       = 2

[profile.bench]
lto             = "thin"

# vim: ts=4 sw=4 expandtab
bues.ch cgit interface