Skip to content
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

Upgrade tonic and prost #6847

Merged
merged 3 commits into from
Sep 25, 2024
Merged

Upgrade tonic and prost #6847

merged 3 commits into from
Sep 25, 2024

Commits on Sep 25, 2024

  1. Add parity-tokio-ipc to workspace dependencies

    Also regroup networking-related crates
    Serock3 committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    0bee6e8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c69b72 View commit details
    Browse the repository at this point in the history
  3. Upgrade tonic to 0.12 and prost to 0.13

    Upgrading `tonic` is a prerequisite to later on upgrading `hyper` to
    version 1.0.
    
    As of version 1.0, `hyper` no longer uses `tokio`s `AsyncWriter`
    and `AsyncReader` traits, instead defining its own versions,
    see <hyperium/hyper#3110>. As tonic
    `0.12` is updated to use the `hyper 1.0` ecosystem, it changed
    some of its trait-bounds to the new `hyper` traits. The `hyper-utils`
    crate provides the wrapper `TokioIo`, which converts between the two.
    
    `prost` had to be upgraded as well, for compatibility.
    Serock3 committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    cb234d5 View commit details
    Browse the repository at this point in the history