From 9da8088ebf72e4346751dd9a9bb24d9c9bf8ba61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:49:18 -0700 Subject: [PATCH] chore(deps): Update prost requirement from 0.12.0 to 0.13.1 (#741) Updates the requirements on [prost](https://github.com/tokio-rs/prost) to permit the latest version.
Changelog

Sourced from prost's changelog.

Prost version 0.13.1

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

Bug fixes

PROST version 0.13.0

note: this version was yanked in favor of 0.13.1

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

This major update brings new features and fixes:

Breaking changes

Features

Dependencies

Documentation

Internal

... (truncated)

Commits

You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- convert/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert/Cargo.toml b/convert/Cargo.toml index 7e72680..b44ed9a 100644 --- a/convert/Cargo.toml +++ b/convert/Cargo.toml @@ -13,7 +13,7 @@ description = "Traits to make Rust types usable with Extism" anyhow = "1.0.75" base64 = "~0.22" bytemuck = {version = "1.14.0", optional = true } -prost = { version = "0.12.0", optional = true } +prost = { version = "0.13.1", optional = true } protobuf = { version = "3.2.0", optional = true } rmp-serde = { version = "1.1.2", optional = true } serde = "1.0.186"