Skip to content

Commit

Permalink
bump tonic and prost dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MarinPostma committed Sep 15, 2023
1 parent bc81b8a commit b9e1117
Show file tree
Hide file tree
Showing 11 changed files with 122 additions and 79 deletions.
113 changes: 76 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions console-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ keywords = [
transport = ["tonic/transport"]

[dependencies]
tonic = { version = "0.9", default-features = false, features = [
tonic = { version = "0.10", default-features = false, features = [
"prost",
"codegen",
"transport",
] }
prost = "0.11"
prost-types = "0.11"
prost = "0.12"
prost-types = "0.12"
tracing-core = "0.1.17"
futures-core = "0.3"

[dev-dependencies]
tonic-build = { version = "0.9", default-features = false, features = [
tonic-build = { version = "0.10", default-features = false, features = [
"prost", "transport"
] }
# explicit dep so we can get the version with fixed whitespace.
prost-build = "0.11.1"
prost-build = "0.12.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
2 changes: 1 addition & 1 deletion console-api/src/generated/rs.tokio.console.async_ops.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// An `AsyncOp` state update.
/// An `AsyncOp` state update.
///
/// This includes a list of any new async ops, and updates to the associated statistics
/// for any async ops that have changed since the last update.
Expand Down
4 changes: 2 additions & 2 deletions console-api/src/generated/rs.tokio.console.common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub struct Field {
pub metadata_id: ::core::option::Option<MetaId>,
/// The key of the key-value pair.
///
/// This is either represented as a string, or as an index into a `Metadata`'s
/// This is either represented as a string, or as an index into a `Metadata`'s
/// array of field name strings.
#[prost(oneof = "field::Name", tags = "1, 2")]
pub name: ::core::option::Option<field::Name>,
Expand All @@ -60,7 +60,7 @@ pub struct Field {
pub mod field {
/// The key of the key-value pair.
///
/// This is either represented as a string, or as an index into a `Metadata`'s
/// This is either represented as a string, or as an index into a `Metadata`'s
/// array of field name strings.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
Expand Down
Loading

0 comments on commit b9e1117

Please sign in to comment.