Skip to content

Commit

Permalink
build: update tonic versions (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers authored Jul 25, 2023
1 parent dd2136d commit 3c73199
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 38 deletions.
97 changes: 68 additions & 29 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ similar-asserts = "1.4.2"
smallvec = { version = "1.10.0", features = ["union", "serde"] }
static_assertions = "1.1.0"
static_init = "1.0.3"
strum = "0.24.1"
strum_macros = "0.24.3"
strum = "0.25.0"
strum_macros = "0.25.1"
substring = "1.4.5"
tempfile = "3.4.0"
tera = "1.19.0"
Expand All @@ -123,10 +123,10 @@ tokio = { version = "1.27.0", features = [
tokio-stream = { version = "0.1.12", features = ["fs"] }
tokio-util = { version = "0.7.7", features = ["io"] }
toml = "0.5.11"
tonic = "0.8.3"
tonic-build = { version = "0.8.4", features = ["prost"] }
tonic-health = "0.8.0"
tonic-reflection = "0.6.0"
tonic = "0.9.2"
tonic-build = { version = "0.9.2", features = ["prost"] }
tonic-health = "0.9.2"
tonic-reflection = "0.9.2"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-opentelemetry = "0.18.0"
Expand Down
4 changes: 1 addition & 3 deletions crates/sparrow-main/src/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ impl ServeCommand {

let reflection_service = tonic_reflection::server::Builder::configure()
.register_encoded_file_descriptor_set(sparrow_api::FILE_DESCRIPTOR_SET)
.register_encoded_file_descriptor_set(
tonic_health::proto::GRPC_HEALTH_V1_FILE_DESCRIPTOR_SET,
)
.register_encoded_file_descriptor_set(tonic_health::pb::FILE_DESCRIPTOR_SET)
.build()
.unwrap();

Expand Down

0 comments on commit 3c73199

Please sign in to comment.