-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 816 Bytes
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
[package]
name = "ssd-benchmark"
description = "Super Simple Disk Benchmark - benchmarks the writing performance of your disk."
version = "1.2.4"
authors = ["Sven Kanoldt <[email protected]>"]
edition = "2018"
license = "GPL-3.0-only"
include = ["src/**/*", "*.md"]
keywords = ["io", "commandline"]
categories = ["command-line-utilities"]
repository = "https://github.com/sassman/ssd-benchmark-rs"
[dependencies]
fastrand = "2.4"
figlet-rs = "0.1.5"
clap = { version = "4.6", features = ["derive"] }
[[bin]]
name = "ssd-benchmark"
[package.metadata.rpm]
package = "ssd-benchmark"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
ssd-benchmark = { path = "/usr/bin/ssd-benchmark" }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"