-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 794 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 794 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
[package]
name = "amd-epp-tool"
authors = ["Jo Voordeckers <jo.voordeckers@gmail.com>"]
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/jayv/amd-epp-tool/"
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link-time optimization.
opt-level = 3 # Optimization level 3.
codegen-units = 1 # Maximum size reduction optimizations.
[profile.size]
inherits = "release"
opt-level = "s" # Optimize for size.
[profile.profile]
inherits = "release"
strip = false
[dependencies]
clap = { version = "4.4", features = ["derive", "color"] }
cliclack = "0.1.9"
strum = "0.25"
strum_macros = "0.25"
console = "0.15"
simple-error = "0.3"
ctrlc = "3.4"
anyhow = "1.0"
ratatui = "0.23"
crossterm = "0.27"