Cargo Feature and Optional Dependencies Support#1645
Open
zahidblackduck wants to merge 12 commits intomasterfrom
Open
Cargo Feature and Optional Dependencies Support#1645zahidblackduck wants to merge 12 commits intomasterfrom
zahidblackduck wants to merge 12 commits intomasterfrom
Conversation
… into dev/zahidblackduck/IDETECT-4816
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
JIRA Ticket
IDETECT-4960
Description
This merge request adds support for Cargo features and optional dependencies in the Cargo CLI Detector so that optional dependencies can be reported in the SBOM.
Previously, the cargo detectors did not provide a way to control which Cargo features were enabled.
The current implementation allows users to specify which features to enable, disable default features, or enable all features via new detect properties. These properties are translated into appropriate
cargo treeflags (--features,--all-features,--no-default-features).Feature Support Scope
Feature and optional dependency support is only available for the Cargo CLI Detector, as it requires the
cargoexecutable to properly resolve features at build time.Cargo Lockfile Detector Limitations: The Cargo Lockfile Detector cannot accurately honor features because
Cargo.lockdoes not store feature activation information. When feature-related properties are provided with the Cargo Lockfile Detector, a warning is logged and the properties are ignored. Detection proceeds normally without failing.New Properties
detect.cargo.included.features=<comma-separated list | ALL | NONE>Controls which Cargo features are enabled when running
cargo treefor the Cargo CLI Detector.detect.cargo.disable.default.features=<true|false>(default:false)Controls whether Cargo's default features are disabled.
Cargo Lockfile Detector Handling
When feature-related properties are specified with the Cargo Lockfile Detector, the following warning is logged: