Merge prost dependecies (#9522)

This patch puts the prost, prost-build, and prost-types dependencies
together and unifies their version. This improves organization a bit in
addition to improving build time slightly, since a redundant version of
prost is now removed.

The dependencies are _not_ updated to the newest versions, because the
newest versions add a dependency on the `protoc` application, which is
not provided by cargo and thus breaks the building process.
This commit is contained in:
Tobias Decking 2024-03-19 03:33:20 +01:00 committed by GitHub
parent 0c82585ea2
commit 1e1fb21c81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 14 additions and 45 deletions

View file

@ -20,13 +20,13 @@ hmac = "0.12"
jwt = "0.16"
log.workspace = true
prost.workspace = true
prost-types = "0.8"
prost-types.workspace = true
reqwest = "0.11"
serde.workspace = true
sha2.workspace = true
[build-dependencies]
prost-build = "0.9"
prost-build.workspace = true
[package.metadata.cargo-machete]
ignored = ["prost-types"]