Always strip in release mode (#5745)

Decreases linux release wheel size by 2MB.

See https://github.com/rust-lang/cargo/issues/14346

Fixes #5683
This commit is contained in:
konsti 2024-08-03 13:11:02 +02:00 committed by GitHub
parent 35b982446d
commit 00981732a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -203,8 +203,12 @@ rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
[profile.release]
strip = true
[profile.profiling]
inherits = "release"
strip = false
debug = true
[profile.fast-build]