-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exclude pre-1.60 crates from workspace #1380
Conversation
Pre-1.60 crates can't be used in workspaces with other crates that use namespaced/weak features. This commit places all MSRV 1.60+ crates into `members` and moves the ones with earlier MSRVs into `exclude`.
57b0862
to
1d3f075
Compare
d13b1ec
to
85a0ccd
Compare
85a0ccd
to
acc7ebb
Compare
Okay, that should hopefully make it green. This will result in |
toolchain: nightly | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo update -Z minimal-versions | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: RustCrypto/actions/cargo-hack-install@master | ||
- run: rm ../../Cargo.toml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't use the shared workflow due to this, FYI (it's nested a level deeper than usual)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's worth to move async-signature
to the top level?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it would help with things like this. There's some open PRs though, so we'd need to get those merged first.
Going to go ahead and merge this so I can PR the |
toolchain: nightly | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo update -Z minimal-versions | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: RustCrypto/actions/cargo-hack-install@master | ||
- run: rm ../../Cargo.toml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's worth to move async-signature
to the top level?
Pre-1.60 crates can't be used in workspaces with other crates that use namespaced/weak features.
This commit places all MSRV 1.60+ crates into
members
and moves the ones with earlier MSRVs intoexclude
.