fix(deps): update tokio-prost monorepo to 0.14.0 #20

Open
kjuulh wants to merge 1 commits from renovate/tokio-prost-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
prost dependencies minor 0.13.4 -> 0.14.0
prost-types dependencies minor 0.13.4 -> 0.14.0

Release Notes

tokio-rs/prost (prost)

v0.14.3

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/tokio-rs/prost/compare/v0.14.2...v0.14.3

v0.14.2

Compare Source

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

⚠️ Heads-up

  • Increase MSRV to 1.82 (#​1356)

  • Update maintenance status to Passively Maintained (#​1359)

    This excerpt is from the readme:

    The current maintainer is not contributing new features and doesn't have the time to review new features. Bug fixes and small improvements are welcome. Feel free to contribute small and easily reviewable PRs.

    Bug fixes are still important, and security fixes will be released as soon as possible. Contact the #prost channel in Tokio discord if you feel a bug or security fix is not getting enough attention.

    The maintainer expects the official protobuf project to release their rust library soon and expects it to be as fully featured as the C++ library. See their source code and crate for more information.

🚀 Features

  • Configure prost path via prost_build::Config or #[(prost(prost_path = "::prost")] (#​1274)
  • Support for deprecated enum and oneof fields (#​1316)

🐛 Bug Fixes

  • (prost-build) Resolve OneOf type name conflict with embedded message (#​1294)
  • (prost-build) Avoid OneOf type collision with enums and keyword names (#​1341)

💼 Dependencies

  • Use trait Error from core (#​1179)
  • (deps) Update protobuf to v25.8 (#​1323)
  • (deps) Update criterion requirement from 0.6 to 0.7 (#​1308)
  • (deps) Update petgraph to 0.8 (#​1327)
  • (deps) Bump actions/upload-artifact from 4 to 5 (#​1351)
  • (deps) Bump actions/checkout from 5 to 6 (#​1370)
  • Bump actions/checkout to v5 (#​1312)
  • Update clippy to version 1.87 (#​1292)
  • Replace once_cell dependency by std lib (#​1119)

📚 Documentation

  • Update outdated link is test documentation (#​1289)
  • Describe use of encoding module (#​1322)
  • Update the readme MSRV to the actual number (#​1331)
  • Update URLs after manual review (#​1336)
  • Answer why fields are wrapped in option (#​1358)

🎨 Styling

  • Add spaces to derive arguments in generated code (#​1290)
  • Use variables directly in the format! string (#​1293)
  • Remove unneeded lint allow statements (#​1326)
  • Remove allocation in tests (#​1332)
  • Simplify DecodeError description to an enum (#​1330)
  • Use variables directly in the format! string (#​1361)
  • Fix typo in prost/src/encoding.rs (#​1369)

🧪 Testing

  • Rename package of ident_conversion (#​1291)
  • Add test for split buffer varint decoding (#​1321)
  • Add descriptive reason of test failure (#​1320)
  • Additionally test decode_varint_slice with roundtrips (#​1325)
  • (result_struct) Move tests to separate module (#​1333)
  • (proto3_presence) Move test to separate module (#​1334)
  • (result_enum) Move test to separate module (#​1342)
  • (option_enum) Move test to separate module (#​1344)
  • (option_struct) Move tests to separate module (#​1345)
  • (message_encoding) Roundtrip Coumpound (#​1365)
  • (no_unused_results) Add roundtrip for Test message (#​1364)
  • (ServiceGenerator) Verify the content of all generated files (#​1357)
  • (derive_copy) Allow dead code (#​1362)
  • Always choose macOS 14 (#​1324)

⚙️ Miscellaneous Tasks

  • Replace duplicate README by a symlink (#​1303)
  • Add cargo-semver-checks (#​1337)

v0.14.1

Compare Source

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

⚠️ Revert emission of rerun commands

Version 0.14.1 reverts the emission of rerun commands. Other than this change, it is identical to 0.14.0.

In version 0.14.0, prost-build began emitting rerun commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating protos from an includes directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1.

For more details, see issue #​1296.

Breaking changes

  • prost: Relax Message Debug trait bound (#​1147)

    BREAKING CHANGE: trait Debug was a supertrait of trait Message. This is no longer required by prost. If your code relies on trait Debug being implemented for every impl Message, you must now explicitly state that you require both Debug and Message. For example: where M: Debug + Message

  • prost: Remove prost-derive feature (#​1247)

    BREAKING CHANGE: Feature flag prost-derive is renamed to derive. Please rename any usage of prost-derive feature in your Cargo.toml.

  • prost-build: Prevent repeated fields to be boxed (#​1237)

    BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as Vec<Box<T>>. Those fields are now simply typed as Vec<T> to prevent double indirection. The boxed configuration is effectively ignored for repeated fields.

  • prost-build: Make type_name_domain cumulative (#​1228)

    BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to prost_build::Config::type_name_domain are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior.

  • prost-build: Derive Eq and Hash trait for messages where possible (#​1175)

    BREAKING CHANGE: prost-build will automatically derive trait Eq and trait Hash for types where all field support those as well. If you manually impl Eq and/or impl Hash for generated types, then you need to remove the manual implementation. If you use type_attribute to derive(Eq) and/or derive(Hash), then you need to remove those.

Features

  • prost-types: Implement conversion Duration to/from chrono::TimeDelta (#​1236)
  • prost-build: Prepare for 2024 keyword gen (#​1257)

Dependencies

  • (deps) Update pulldown-cmark to 0.13 (#​1259)
  • (deps) update criterion requirement from 0.5 to 0.6 (#​1280)

Documentation

  • Update dead link LICENSE in prost-types/README.md (#​1262)

Styling

Testing

  • Run tests using edition 2024 (#​1254)
  • Run clippy with edition 2024 enabled (#​1256)

v0.14.0

Compare Source

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

Breaking changes

  • prost: Relax Message Debug trait bound (#​1147)

    BREAKING CHANGE: trait Debug was a supertrait of trait Message. This is no longer required by prost. If your code relies on trait Debug being implemented for every impl Message, you must now explicitly state that you require both Debug and Message. For example: where M: Debug + Message

  • prost: Remove prost-derive feature (#​1247)

    BREAKING CHANGE: Feature flag prost-derive is renamed to derive. Please rename any usage of prost-derive feature in your Cargo.toml.

  • prost-build: Emit rerun commands (#​1140)

    BREAKING CHANGE: Previously cargo assumed it had to rerun build.rs if any files in the project changed. prost-build will now emit rerun commands, which means only the explicitly marked files cause a rerun. If your build.rs is dependent on any other file paths than those given to prost-build, then your build.rs needs to emit rerun commands as well.

  • prost-build: Prevent repeated fields to be boxed (#​1237)

    BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as Vec<Box<T>>. Those fields are now simply typed as Vec<T> to prevent double indirection. The boxed configuration is effectively ignored for repeated fields.

  • prost-build: Make type_name_domain cumulative (#​1228)

    BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to prost_build::Config::type_name_domain are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior.

  • prost-build: Derive Eq and Hash trait for messages where possible (#​1175)

    BREAKING CHANGE: prost-build will automatically derive trait Eq and trait Hash for types where all field support those as well. If you manually impl Eq and/or impl Hash for generated types, then you need to remove the manual implementation. If you use type_attribute to derive(Eq) and/or derive(Hash), then you need to remove those.

Features

  • prost-types: Implement conversion Duration to/from chrono::TimeDelta (#​1236)
  • prost-build: Prepare for 2024 keyword gen (#​1257)

Dependencies

  • (deps) Update pulldown-cmark to 0.13 (#​1259)
  • (deps) update criterion requirement from 0.5 to 0.6 (#​1280)

Documentation

  • Update dead link LICENSE in prost-types/README.md (#​1262)

Styling

Testing

  • Run tests using edition 2024 (#​1254)
  • Run clippy with edition 2024 enabled (#​1256)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [prost](https://github.com/tokio-rs/prost) | dependencies | minor | `0.13.4` -> `0.14.0` | | [prost-types](https://github.com/tokio-rs/prost) | dependencies | minor | `0.13.4` -> `0.14.0` | --- ### Release Notes <details> <summary>tokio-rs/prost (prost)</summary> ### [`v0.14.3`](https://github.com/tokio-rs/prost/releases/tag/v0.14.3) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.14.2...v0.14.3) ##### What's Changed - fix some forgotten prost import paths by [@&#8203;GlenDC](https://github.com/GlenDC) in https://github.com/tokio-rs/prost/pull/1385 - build(deps): bump actions/upload-artifact from 5 to 6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in https://github.com/tokio-rs/prost/pull/1381 - build(deps): update pulldown-cmark-to-cmark requirement from 21 to 22 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in https://github.com/tokio-rs/prost/pull/1384 - Bugfix: default Name implementation produces invalid URLs with empty packages. by [@&#8203;aaronjeline](https://github.com/aaronjeline) in https://github.com/tokio-rs/prost/pull/1386 - fix: Add back `DecodeError::new` by [@&#8203;caspermeijn](https://github.com/caspermeijn) in https://github.com/tokio-rs/prost/pull/1382 - chore: remove protobuf submodule and leverage cmake for it by [@&#8203;LucioFranco](https://github.com/LucioFranco) in https://github.com/tokio-rs/prost/pull/1389 ##### New Contributors - [@&#8203;GlenDC](https://github.com/GlenDC) made their first contribution in https://github.com/tokio-rs/prost/pull/1385 - [@&#8203;aaronjeline](https://github.com/aaronjeline) made their first contribution in https://github.com/tokio-rs/prost/pull/1386 **Full Changelog**: https://github.com/tokio-rs/prost/compare/v0.14.2...v0.14.3 ### [`v0.14.2`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0142) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.14.1...v0.14.2) *PROST!* is a [Protocol Buffers](https://protobuf.dev/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. #### ⚠️ Heads-up - Increase MSRV to 1.82 ([#&#8203;1356](https://github.com/tokio-rs/prost/issues/1356)) - Update maintenance status to Passively Maintained ([#&#8203;1359](https://github.com/tokio-rs/prost/issues/1359)) This excerpt is from the readme: > The current maintainer is not contributing new features and doesn't have the time to review new features. Bug fixes and small improvements are welcome. Feel free to contribute small and easily reviewable PRs. > > Bug fixes are still important, and security fixes will be released as soon as possible. Contact the `#prost` channel in [Tokio discord](https://discord.gg/tokio) if you feel a bug or security fix is not getting enough attention. > > The maintainer expects the official `protobuf` project to release their rust library soon and expects it to be as fully featured as the C++ library. See their [source code](https://github.com/protocolbuffers/protobuf/tree/main/rust) and [crate](https://crates.io/crates/protobuf/4.33.1-release) for more information. #### 🚀 Features - Configure prost path via `prost_build::Config` or `#[(prost(prost_path = "::prost")]` ([#&#8203;1274](https://github.com/tokio-rs/prost/issues/1274)) - Support for deprecated enum and oneof fields ([#&#8203;1316](https://github.com/tokio-rs/prost/issues/1316)) #### 🐛 Bug Fixes - *(prost-build)* Resolve OneOf type name conflict with embedded message ([#&#8203;1294](https://github.com/tokio-rs/prost/issues/1294)) - *(prost-build)* Avoid OneOf type collision with enums and keyword names ([#&#8203;1341](https://github.com/tokio-rs/prost/issues/1341)) #### 💼 Dependencies - Use `trait Error` from core ([#&#8203;1179](https://github.com/tokio-rs/prost/issues/1179)) - *(deps)* Update protobuf to v25.8 ([#&#8203;1323](https://github.com/tokio-rs/prost/issues/1323)) - *(deps)* Update criterion requirement from 0.6 to 0.7 ([#&#8203;1308](https://github.com/tokio-rs/prost/issues/1308)) - *(deps)* Update petgraph to 0.8 ([#&#8203;1327](https://github.com/tokio-rs/prost/issues/1327)) - *(deps)* Bump actions/upload-artifact from 4 to 5 ([#&#8203;1351](https://github.com/tokio-rs/prost/issues/1351)) - *(deps)* Bump actions/checkout from 5 to 6 ([#&#8203;1370](https://github.com/tokio-rs/prost/issues/1370)) - Bump actions/checkout to v5 ([#&#8203;1312](https://github.com/tokio-rs/prost/issues/1312)) - Update clippy to version 1.87 ([#&#8203;1292](https://github.com/tokio-rs/prost/issues/1292)) - Replace once_cell dependency by std lib ([#&#8203;1119](https://github.com/tokio-rs/prost/issues/1119)) #### 📚 Documentation - Update outdated link is test documentation ([#&#8203;1289](https://github.com/tokio-rs/prost/issues/1289)) - Describe use of encoding module ([#&#8203;1322](https://github.com/tokio-rs/prost/issues/1322)) - Update the readme MSRV to the actual number ([#&#8203;1331](https://github.com/tokio-rs/prost/issues/1331)) - Update URLs after manual review ([#&#8203;1336](https://github.com/tokio-rs/prost/issues/1336)) - Answer why fields are wrapped in option ([#&#8203;1358](https://github.com/tokio-rs/prost/issues/1358)) #### 🎨 Styling - Add spaces to derive arguments in generated code ([#&#8203;1290](https://github.com/tokio-rs/prost/issues/1290)) - Use variables directly in the `format!` string ([#&#8203;1293](https://github.com/tokio-rs/prost/issues/1293)) - Remove unneeded lint allow statements ([#&#8203;1326](https://github.com/tokio-rs/prost/issues/1326)) - Remove allocation in tests ([#&#8203;1332](https://github.com/tokio-rs/prost/issues/1332)) - Simplify DecodeError description to an enum ([#&#8203;1330](https://github.com/tokio-rs/prost/issues/1330)) - Use variables directly in the `format!` string ([#&#8203;1361](https://github.com/tokio-rs/prost/issues/1361)) - Fix typo in prost/src/encoding.rs ([#&#8203;1369](https://github.com/tokio-rs/prost/issues/1369)) #### 🧪 Testing - Rename package of `ident_conversion` ([#&#8203;1291](https://github.com/tokio-rs/prost/issues/1291)) - Add test for split buffer varint decoding ([#&#8203;1321](https://github.com/tokio-rs/prost/issues/1321)) - Add descriptive reason of test failure ([#&#8203;1320](https://github.com/tokio-rs/prost/issues/1320)) - Additionally test `decode_varint_slice` with roundtrips ([#&#8203;1325](https://github.com/tokio-rs/prost/issues/1325)) - *(result_struct)* Move tests to separate module ([#&#8203;1333](https://github.com/tokio-rs/prost/issues/1333)) - *(proto3\_presence)* Move test to separate module ([#&#8203;1334](https://github.com/tokio-rs/prost/issues/1334)) - *(result_enum)* Move test to separate module ([#&#8203;1342](https://github.com/tokio-rs/prost/issues/1342)) - *(option_enum)* Move test to separate module ([#&#8203;1344](https://github.com/tokio-rs/prost/issues/1344)) - *(option_struct)* Move tests to separate module ([#&#8203;1345](https://github.com/tokio-rs/prost/issues/1345)) - *(message_encoding)* Roundtrip `Coumpound` ([#&#8203;1365](https://github.com/tokio-rs/prost/issues/1365)) - *(no_unused_results)* Add roundtrip for Test message ([#&#8203;1364](https://github.com/tokio-rs/prost/issues/1364)) - *(ServiceGenerator)* Verify the content of all generated files ([#&#8203;1357](https://github.com/tokio-rs/prost/issues/1357)) - *(derive_copy)* Allow dead code ([#&#8203;1362](https://github.com/tokio-rs/prost/issues/1362)) - Always choose macOS 14 ([#&#8203;1324](https://github.com/tokio-rs/prost/issues/1324)) #### ⚙️ Miscellaneous Tasks - Replace duplicate README by a symlink ([#&#8203;1303](https://github.com/tokio-rs/prost/issues/1303)) - Add `cargo-semver-checks` ([#&#8203;1337](https://github.com/tokio-rs/prost/issues/1337)) ### [`v0.14.1`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0141) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.14.0...v0.14.1) *PROST!* is a [Protocol Buffers](https://protobuf.dev/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. #### ⚠️ Revert emission of `rerun` commands Version 0.14.1 reverts the emission of `rerun` commands. Other than this change, it is identical to 0.14.0. In version 0.14.0, `prost-build` began emitting `rerun` commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating `protos` from an `includes` directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1. For more details, see [issue #&#8203;1296](https://github.com/tokio-rs/prost/issues/1296). #### Breaking changes - prost: Relax Message Debug trait bound ([#&#8203;1147](https://github.com/tokio-rs/prost/issues/1147)) BREAKING CHANGE: `trait Debug` was a supertrait of `trait Message`. This is no longer required by `prost`. If your code relies on `trait Debug` being implemented for every `impl Message`, you must now explicitly state that you require both Debug and Message. For example: `where M: Debug + Message` - prost: Remove prost-derive feature ([#&#8203;1247](https://github.com/tokio-rs/prost/issues/1247)) BREAKING CHANGE: Feature flag `prost-derive` is renamed to `derive`. Please rename any usage of `prost-derive` feature in your `Cargo.toml`. - prost-build: Prevent repeated fields to be boxed ([#&#8203;1237](https://github.com/tokio-rs/prost/issues/1237)) BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as `Vec<Box<T>>`. Those fields are now simply typed as `Vec<T>` to prevent double indirection. The `boxed` configuration is effectively ignored for repeated fields. - prost-build: Make `type_name_domain` cumulative ([#&#8203;1228](https://github.com/tokio-rs/prost/issues/1228)) BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to `prost_build::Config::type_name_domain` are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. - prost-build: Derive Eq and Hash trait for messages where possible ([#&#8203;1175](https://github.com/tokio-rs/prost/issues/1175)) BREAKING CHANGE: `prost-build` will automatically derive `trait Eq` and `trait Hash` for types where all field support those as well. If you manually `impl Eq` and/or `impl Hash` for generated types, then you need to remove the manual implementation. If you use `type_attribute` to `derive(Eq)` and/or `derive(Hash)`, then you need to remove those. #### Features - prost-types: Implement conversion `Duration` to/from `chrono::TimeDelta` ([#&#8203;1236](https://github.com/tokio-rs/prost/issues/1236)) - prost-build: Prepare for 2024 keyword `gen` ([#&#8203;1257](https://github.com/tokio-rs/prost/issues/1257)) #### Dependencies - *(deps)* Update pulldown-cmark to 0.13 ([#&#8203;1259](https://github.com/tokio-rs/prost/issues/1259)) - *(deps)* update criterion requirement from 0.5 to 0.6 ([#&#8203;1280](https://github.com/tokio-rs/prost/issues/1280)) #### Documentation - Update dead link LICENSE in `prost-types/README.md` ([#&#8203;1262](https://github.com/tokio-rs/prost/issues/1262)) #### Styling - Use DoubleEndedIterator::next_back ([#&#8203;1255](https://github.com/tokio-rs/prost/issues/1255)) - Fix typo ([#&#8203;1260](https://github.com/tokio-rs/prost/issues/1260)) #### Testing - Run tests using edition 2024 ([#&#8203;1254](https://github.com/tokio-rs/prost/issues/1254)) - Run clippy with edition 2024 enabled ([#&#8203;1256](https://github.com/tokio-rs/prost/issues/1256)) ### [`v0.14.0`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0140) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.5...v0.14.0) *PROST!* is a [Protocol Buffers](https://protobuf.dev/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. #### Breaking changes - prost: Relax Message Debug trait bound ([#&#8203;1147](https://github.com/tokio-rs/prost/issues/1147)) BREAKING CHANGE: `trait Debug` was a supertrait of `trait Message`. This is no longer required by `prost`. If your code relies on `trait Debug` being implemented for every `impl Message`, you must now explicitly state that you require both Debug and Message. For example: `where M: Debug + Message` - prost: Remove prost-derive feature ([#&#8203;1247](https://github.com/tokio-rs/prost/issues/1247)) BREAKING CHANGE: Feature flag `prost-derive` is renamed to `derive`. Please rename any usage of `prost-derive` feature in your `Cargo.toml`. - prost-build: Emit `rerun` commands ([#&#8203;1140](https://github.com/tokio-rs/prost/issues/1140)) BREAKING CHANGE: Previously `cargo` assumed it had to rerun `build.rs` if any files in the project changed. `prost-build` will now emit `rerun` commands, which means only the explicitly marked files cause a rerun. If your `build.rs` is dependent on any other file paths than those given to `prost-build`, then your `build.rs` needs to emit `rerun` commands as well. - prost-build: Prevent repeated fields to be boxed ([#&#8203;1237](https://github.com/tokio-rs/prost/issues/1237)) BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as `Vec<Box<T>>`. Those fields are now simply typed as `Vec<T>` to prevent double indirection. The `boxed` configuration is effectively ignored for repeated fields. - prost-build: Make `type_name_domain` cumulative ([#&#8203;1228](https://github.com/tokio-rs/prost/issues/1228)) BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to `prost_build::Config::type_name_domain` are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. - prost-build: Derive Eq and Hash trait for messages where possible ([#&#8203;1175](https://github.com/tokio-rs/prost/issues/1175)) BREAKING CHANGE: `prost-build` will automatically derive `trait Eq` and `trait Hash` for types where all field support those as well. If you manually `impl Eq` and/or `impl Hash` for generated types, then you need to remove the manual implementation. If you use `type_attribute` to `derive(Eq)` and/or `derive(Hash)`, then you need to remove those. #### Features - prost-types: Implement conversion `Duration` to/from `chrono::TimeDelta` ([#&#8203;1236](https://github.com/tokio-rs/prost/issues/1236)) - prost-build: Prepare for 2024 keyword `gen` ([#&#8203;1257](https://github.com/tokio-rs/prost/issues/1257)) #### Dependencies - *(deps)* Update pulldown-cmark to 0.13 ([#&#8203;1259](https://github.com/tokio-rs/prost/issues/1259)) - *(deps)* update criterion requirement from 0.5 to 0.6 ([#&#8203;1280](https://github.com/tokio-rs/prost/issues/1280)) #### Documentation - Update dead link LICENSE in `prost-types/README.md` ([#&#8203;1262](https://github.com/tokio-rs/prost/issues/1262)) #### Styling - Use DoubleEndedIterator::next_back ([#&#8203;1255](https://github.com/tokio-rs/prost/issues/1255)) - Fix typo ([#&#8203;1260](https://github.com/tokio-rs/prost/issues/1260)) #### Testing - Run tests using edition 2024 ([#&#8203;1254](https://github.com/tokio-rs/prost/issues/1254)) - Run clippy with edition 2024 enabled ([#&#8203;1256](https://github.com/tokio-rs/prost/issues/1256)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-06-19 02:51:28 +02:00
fix(deps): update tokio-prost monorepo to 0.14.0
Some checks failed
renovate/artifacts Artifact file update failure
adb1ea549e
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/voidpin/Cargo.toml --package prost@0.13.5 --precise 0.14.1
    Updating crates.io index
error: failed to select a version for the requirement `prost = "^0.13"`
candidate versions found which didn't match: 0.14.1
location searched: crates.io index
required by package `tonic v0.12.3`
    ... which satisfies dependency `tonic = "^0.12.3"` (locked to 0.12.3) of package `voidpin v0.0.4 (/tmp/renovate/repos/gitea/kjuulh/voidpin/crates/voidpin)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/voidpin/Cargo.toml --package prost@0.13.5 --precise 0.14.1 Updating crates.io index error: failed to select a version for the requirement `prost = "^0.13"` candidate versions found which didn't match: 0.14.1 location searched: crates.io index required by package `tonic v0.12.3` ... which satisfies dependency `tonic = "^0.12.3"` (locked to 0.12.3) of package `voidpin v0.0.4 (/tmp/renovate/repos/gitea/kjuulh/voidpin/crates/voidpin)` ```
kjuulh force-pushed renovate/tokio-prost-monorepo from adb1ea549e to aa74eb4a04 2025-11-13 03:49:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from aa74eb4a04 to 20551bc63f 2025-11-13 05:52:26 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 20551bc63f to 9cedf689f9 2025-11-14 03:00:54 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9cedf689f9 to 1b9c0a0e65 2025-11-14 05:57:24 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1b9c0a0e65 to 5a5e7cf95d 2025-11-15 05:57:41 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5a5e7cf95d to 9a174eba3a 2025-11-18 06:03:44 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9a174eba3a to a705bbb408 2025-11-20 06:01:02 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a705bbb408 to b4dc95da3f 2025-11-29 06:03:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b4dc95da3f to cbfee774b5 2025-12-03 03:00:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cbfee774b5 to a3b1c9e4ae 2025-12-19 06:07:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a3b1c9e4ae to a5691f7557 2026-01-03 05:57:01 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a5691f7557 to a56daf4cf6 2026-01-04 05:57:02 +01:00 Compare
Some checks failed
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/tokio-prost-monorepo:renovate/tokio-prost-monorepo
git checkout renovate/tokio-prost-monorepo
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/voidpin#20