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
CARGO_TREE includes the dependency tree. This in turn will include the full file system path for any path dependencies, as is common for multi-crate projects. The file system path may contain sensitive information, and I do not want to rely on the linker removing CARGO_TREE from the built binary if I don't use it; I must be sure that the compiler never sees it.
Therefore I'm just asking for the ability to disable this build information variable via a feature flag or a build script configuration option.
The text was updated successfully, but these errors were encountered:
CARGO_TREE
includes the dependency tree. This in turn will include the full file system path for any path dependencies, as is common for multi-crate projects. The file system path may contain sensitive information, and I do not want to rely on the linker removing CARGO_TREE from the built binary if I don't use it; I must be sure that the compiler never sees it.Therefore I'm just asking for the ability to disable this build information variable via a feature flag or a build script configuration option.
The text was updated successfully, but these errors were encountered: