-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the v3 resolver for msrv compliant versoins
- Loading branch information
Showing
4 changed files
with
48 additions
and
47 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
[workspace] | ||
members = ["protocol", "proxy"] | ||
# Resolving transitive dependencies which are MSRV compliant with resolver v3, | ||
# but the v3 resolver is only available in rustc > 1.84.0. | ||
# | ||
# 1. Update workspace resolver setting to `3`. | ||
# 2. Hop over to a toolchain with rust version > 1.84.0. | ||
# 3. Run `cargo update` to fix up lock file versions. | ||
# 4. Set workspace resolver setting back to `2` to support MSRV. | ||
# | ||
# Once MSRV > 1.84.0 this setting can be dropped since the default is then v3. | ||
resolver = "2" |
This file contains 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