18 lines
354 B
TOML
18 lines
354 B
TOML
[package]
|
|
name = "release-profiles"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
# Cargo has default settings for each of the profiles
|
|
# for building in the `[profiles.*]` sections.
|
|
# opt-level controls the amount of optimizations appied
|
|
# at compile time.
|
|
# 1 is not the default value
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.release]
|
|
opt-level = 3
|