You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the ongoing effort to reduce build times across the ecosystem, I've stumbled upon this commit, which makes syn and other build-time dependencies be compiled with no debug info nor optimisations. This is neat, but it only happens for the dev profile, whereas AFAICT we don't want to compile syn with optimisations even in release mode in this instance. Unfortunately, the Cargo manifest has no way to specify things for multiple profiles at all.
Would it make sense to support something like [profile.*.blablabla] to set something across all profiles at once?
The text was updated successfully, but these errors were encountered:
nox
added
the
C-feature-request
Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`
label
Sep 26, 2019
Looking at the ongoing effort to reduce build times across the ecosystem, I've stumbled upon this commit, which makes
syn
and other build-time dependencies be compiled with no debug info nor optimisations. This is neat, but it only happens for thedev
profile, whereas AFAICT we don't want to compilesyn
with optimisations even in release mode in this instance. Unfortunately, the Cargo manifest has no way to specify things for multiple profiles at all.Would it make sense to support something like
[profile.*.blablabla]
to set something across all profiles at once?The text was updated successfully, but these errors were encountered: