crates: - name: A deps: - B features: F0: null - name: B features: F0: null cases: - cmd: lint propagate-feature --feature F0 stdout: | crate 'A' feature 'F0' must propagate to: B Found 1 issue (run with `--fix` to fix). code: 1 - cmd: lint propagate-feature -p A --feature F0 stdout: | crate 'A' feature 'F0' must propagate to: B Found 1 issue (run with `--fix` to fix). code: 1 - cmd: lint propagate-feature -p B --feature F0 - cmd: lint propagate-feature -p B --feature F1 - cmd: lint propagate-feature --feature F0 --workspace stdout: | crate 'A' feature 'F0' must propagate to: B Found 1 issue (run with `--fix` to fix). code: 1 - cmd: lint propagate-feature -p A --feature F0 --workspace stdout: | crate 'A' feature 'F0' must propagate to: B Found 1 issue (run with `--fix` to fix). code: 1 - cmd: lint propagate-feature -p B --feature F0 --workspace - cmd: lint propagate-feature -p B --feature F1 --workspace - cmd: lint propagate-feature --feature F0 --exit-code-zero stdout: | crate 'A' feature 'F0' must propagate to: B Found 1 issue (run with `--fix` to fix).