-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1005 Bytes
/
Cargo.toml
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
[workspace]
members = [
"rypper",
"rypper-cli",
"rypper-core",
"rypper-gui",
"rypper-reader",
"rypper-tui",
"rypper-utils"
]
default-members = [
"rypper",
"rypper-cli",
"rypper-core",
"rypper-gui",
"rypper-reader",
"rypper-tui",
"rypper-utils"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = [
"Soc Virnyl Estela <[email protected]>"
]
rust-version = "1.71"
edition = "2021"
license = "MPL-2.0"
homepage = "https://codeberg.org/uncomfyhalomacro/rypper"
repository = "https://codeberg.org/uncomfyhalomacro/rypper"
[profile.release]
lto = true # Enable Link Time Optimization.
debug = true # Include debug symbols. If you are going to complain for big binary sizes, there is a release-stripped option :P
codegen-units = 8 # Default. Little gains if set to 1 so why bother?
panic = 'abort' # Abort on panic.
strip = false # Strip symbols from binary.
[profile.release-stripped]
inherits = "release"
strip = true