Skip to content

Commit

Permalink
Bump Prost and Tonic (#934)
Browse files Browse the repository at this point in the history
Co-authored-by: Oscar Boykin <[email protected]>
  • Loading branch information
johnynek and Oscar Boykin authored Oct 5, 2023
1 parent 48c00ed commit dc3be10
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 38 deletions.
49 changes: 24 additions & 25 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions bazelfe-bazel-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ctrlc = "3.4.1"
clap = { version = "4.4.6", features = ["derive", "env"] }
lazy_static = "1.4.0"
log = "0.4.20"
prost = "0.11.9"
prost-types = "0.11.9"
prost = "0.12.1"
prost-types = "0.12.1"
rand = "0.8.5"
serde = { version = "1.0.188", features = ["derive"] }
thiserror = "1.0.49"
Expand Down Expand Up @@ -65,7 +65,7 @@ version = "0.1.14"

[dependencies.tonic]
features = ["tls"]
version = "0.9.2"
version = "0.10.2"

[dev-dependencies]
once_cell = "1.18.0"
Expand Down
6 changes: 3 additions & 3 deletions bazelfe-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ log = "0.4.20"
nom = "7.1.3"
openssl = { version = "0.10.57", features = ["vendored"] }
pretty_env_logger = "0.5.0"
prost = "0.11.9"
prost-types = "0.11.9"
prost = "0.12.1"
prost-types = "0.12.1"
rand = "0.8.5"
regex = "1.9.6"
serde = { version = "1.0.188", features = ["derive"] }
Expand Down Expand Up @@ -119,7 +119,7 @@ version = "0.1.14"

[dependencies.tonic]
features = ["tls"]
version = "0.9.2"
version = "0.10.2"

[dev-dependencies]
once_cell = "1.18.0"
Expand Down
8 changes: 4 additions & 4 deletions bazelfe-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
tonic = { version = "0.9.2", features = ["tls"] }
prost = "0.11.9"
tonic = { version = "0.10.2", features = ["tls"] }
prost = "0.12.1"
# Required for wellknown types
prost-types = "0.11.9"
prost-types = "0.12.1"
sha2 = "0.10.8"
thiserror = "1.0.49"
openssl = { version = "0.10.57", features = ["vendored"] }
Expand All @@ -19,7 +19,7 @@ features = ["full"]
version = "1.32.0"

[build-dependencies]
tonic-build = { version = "0.9.2", features = ["prost"] }
tonic-build = { version = "0.10.2", features = ["prost"] }


[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions bzl-remote-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ tracing = "0.1.38"
tracing-attributes = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["tracing-log", "env-filter"] }
prost = "0.11.9"
prost-types = "0.11.9"
prost = "0.12.1"
prost-types = "0.12.1"
rand = "0.8.5"
regex = "1.9.6"
serde = { version = "1.0.188", features = ["derive"] }
Expand Down Expand Up @@ -84,7 +84,7 @@ version = "0.1.14"

[dependencies.tonic]
features = ["tls"]
version = "0.9.2"
version = "0.10.2"

[dev-dependencies]
once_cell = "1.18.0"
Expand Down

0 comments on commit dc3be10

Please sign in to comment.