about summary refs log tree commit diff
path: root/Cargo.toml
blob: 09243702065f339ec38f5838ef919671a457f444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[workspace]
members = ["corgi", "parrot"]
resolver = "3"

# use this profile like this:
# 	$ cargo build --profile size
# and select a binary like this:
#	$ cargo build --bin corgi
[profile.size]
inherits = "release"
strip = true
opt-level = "z"
lto = true
codegen-units = 1