summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 89f20e1fd2adb82162de624949e62b08a0846765 (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
49
50
51
52
# -*- coding: utf-8 -*-

[workspace]
members = [ "disktest", "disktest-lib" , "disktest-rawio"]
resolver = "2"

[workspace.package]
description = "Tester for Solid State Disks, Non-Volatile Memory Storage, Hard Disks, USB Sticks, SD-Cards, etc.."
homepage = "https://bues.ch/h/disktest"
repository = "https://github.com/mbuesch/disktest"
license = "MIT OR Apache-2.0"
readme = "README.md"
authors = ["Michael Büsch <m@bues.ch>"]
categories = ["command-line-utilities", "filesystem", "hardware-support"]
keywords = ["disk", "HDD", "SSD", "flash", "SD-card"]
edition = "2021"
rust-version = "1.75.0"

[workspace.dependencies]
anyhow = "1"
chrono = "0.4"
clap = "4"
libc = "0.2"
movavg = "2"
rand = "0.8"
rand_chacha = "0.3"
regex = "1"
ring = "0.17"
signal-hook = "0.3"
tempfile = "3"
winapi = "0.3"

disktest-lib = { version = "1", path = "./disktest-lib" }
disktest-rawio = { version = "1", path = "./disktest-rawio" }

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

[profile.release]
lto = "fat"
codegen-units = 1

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

[profile.bench]
lto = "fat"
codegen-units = 1

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