This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Update Rust dependencies since merging new-engine into main (ENG-2428)#3487
Merged
si-bors-ng[bot] merged 1 commit intomainfrom Mar 29, 2024
Merged
Update Rust dependencies since merging new-engine into main (ENG-2428)#3487si-bors-ng[bot] merged 1 commit intomainfrom
new-engine into main (ENG-2428)#3487si-bors-ng[bot] merged 1 commit intomainfrom
Conversation
1b936c5 to
90c6d3a
Compare
new-engine into main
90c6d3a to
84b9c6c
Compare
new-engine into mainnew-engine into main (ENG-2428)
84b9c6c to
218002c
Compare
This commit updates every Rust-based dependency by its major, minor or patch version by default. It also moves the `postcard` version declaration from `dal` to the main `Cargo.toml` since the `alloc` feature is a subset of the `use-std` feature. Given the large scope of these changes, this commit does not seek to change any Rust code or fixups barring a small change regarding `EnumVariantNameds`. Exceptions to the goal of this commit include the following: - Hold `rustls`, `webpki-roots`, `tokio-vsock` and `yrs` to their minor versions due to API changes - Hold `nix` and `ring` to their current versions due to needing buck2-specific changes - Hold all hyper v1 dependencies to their minor versions due to a longer term effort needed to get us to hyper v1 - Hold `serde_yaml` to its current version due to being unmaintained (https://github.com/dtolnay/serde-yaml/releases/tag/0.9.34) Signed-off-by: Nick Gerace <nick@systeminit.com>
218002c to
98c6141
Compare
Contributor
Author
|
bors merge |
Contributor
|
Build succeeded: |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
This PR updates every Rust-based dependency by its major, minor or patch version by default. It also moves the
postcardversion declaration fromdalto the mainCargo.tomlsince theallocfeature is a subset of theuse-stdfeature.Exceptions
Given the large scope of these changes, this PR does not seek to change any Rust code or fixups barring a small change regarding
EnumVariantNames. Exceptions to the goal of this PR include the following:rustls,webpki-roots,tokio-vsockandyrsto their minor versions due to API changesnixandringto their current versions due to needing buck2-specific changesserde_yamlto its current version due to being unmaintained as of0.9.34Note
As a reminder, the
new-enginewas merged intomainas of #3113.