Files
espflash/Cargo.toml
Jesse Braham d9c91df011 Strip symbols and enable LTO when building using the release profile
This shrinks the size of the resulting binaries by a fairly significant amount. This requires bumping the MSRV to 1.59, however.
2022-05-09 09:25:37 -07:00

10 lines
111 B
TOML

[workspace]
members = [
"cargo-espflash",
"espflash",
]
[profile.release]
lto = "thin"
strip = true