about summary refs log tree commit diff
path: root/Cargo.toml
blob: 8feb4b423953c36f0db67e472b9673e214ff477c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[workspace]
members = ["corgi", "parrot", "parrot_module"]
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