Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tonic + prost dependencies #14

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ crate/cratesio/-/polling/2.8.0, Apache-2.0 OR MIT, approved, clearlydefined
crate/cratesio/-/ppv-lite86/0.2.17, MIT OR Apache-2.0, approved, clearlydefined
crate/cratesio/-/proc-macro2/1.0.66, MIT OR Apache-2.0, approved, clearlydefined
crate/cratesio/-/proc-macro-crate/1.3.1, MIT OR Apache-2.0, approved, clearlydefined
crate/cratesio/-/prost/0.11.9, Apache-2.0, approved, #7713
crate/cratesio/-/prost-derive/0.11.9, Apache-2.0, approved, #7717
crate/cratesio/-/prost-types/0.11.9, Apache-2.0 AND BSD-2-Clause, approved, #7714
crate/cratesio/-/prost/0.12.1, Apache-2.0, approved, #10594
crate/cratesio/-/prost-derive/0.12.1, Apache-2.0, approved, clearlydefined
crate/cratesio/-/prost-types/0.12.1, Apache-2.0 AND BSD-3-Clause, approved, #10593
crate/cratesio/-/protobuf/3.2.0, MIT, approved, clearlydefined
crate/cratesio/-/protobuf-support/3.2.0, MIT, approved, clearlydefined
crate/cratesio/-/quote/1.0.32, MIT OR Apache-2.0, approved, clearlydefined
Expand Down Expand Up @@ -151,7 +151,7 @@ crate/cratesio/-/tokio-stream/0.1.14, MIT, approved, clearlydefined
crate/cratesio/-/tokio-util/0.7.8, MIT, approved, clearlydefined
crate/cratesio/-/toml_datetime/0.6.3, MIT OR Apache-2.0, approved, clearlydefined
crate/cratesio/-/toml_edit/0.19.14, MIT OR Apache-2.0, approved, clearlydefined
crate/cratesio/-/tonic/0.9.2, MIT AND Apache-2.0, approved, #9772
crate/cratesio/-/tonic/0.10.0, MIT, approved, clearlydefined
crate/cratesio/-/tower/0.4.13, MIT AND Apache-2.0, approved, #6661
crate/cratesio/-/tower-layer/0.3.2, MIT, approved, clearlydefined
crate/cratesio/-/tower-service/0.3.2, MIT, approved, clearlydefined
Expand Down
46 changes: 19 additions & 27 deletions components/Cargo.lock

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

8 changes: 4 additions & 4 deletions components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ protobuf = { version = "3" }
protobuf-codegen = { version = "3" }
protoc-bin-vendored = { version = "3" }
# prost has no features
prost = { version = "0.11" }
prost = { version = "0.12" }
# prost-types has no features
prost-types = { version = "0.11" }
prost-types = { version = "0.12" }
# tokio does not enable features by default
tokio = { version = "1.29" }
tonic = { version = "0.9", default-features = false }
tonic-build = { version = "0.9", default-features = false }
tonic = { version = "0.10", default-features = false }
tonic-build = { version = "0.10", default-features = false }

[profile.release]
lto = true # Link time optimization (dead code removal etc...)
Expand Down