-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
A-workspace-inheritanceArea: workspace inheritance RFC 2906Area: workspace inheritance RFC 2906C-bugCategory: bugCategory: bugS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.regression-from-stable-to-betaRegression in beta that previously worked in stable.Regression in beta that previously worked in stable.
Description
Problem
With 1.77.2, a vendored Cargo.toml might contain something like:
[lints.clippy.pedantic]
level = "warn"
priority = -1
instead of what's in the original crate (vendored via git):
[lints]
workspace = true
with 1.79.0-beta.1, you see what's in the original crate.
It happens with nightly-2024-04-28 but not nightly-2024-04-27, which would put the regression in the range c939267..b60a155. Edit: fixed the versions.
Presumably this could affect cargo publish
too.
Steps
cargo new testcase; cd testcase
- add the following dependency to
Cargo.toml
:neqo-common = { tag = "v0.7.5", git = "https://github.com/mozilla/neqo" }
cargo vendor vendoring
- Look at the file
vendoring/neqo-common/Cargo.toml
Possible Solution(s)
No response
Notes
No response
Version
No response
Metadata
Metadata
Assignees
Labels
A-workspace-inheritanceArea: workspace inheritance RFC 2906Area: workspace inheritance RFC 2906C-bugCategory: bugCategory: bugS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.regression-from-stable-to-betaRegression in beta that previously worked in stable.Regression in beta that previously worked in stable.