Skip to content

Commit

Permalink
rust: Update tonic to v0.4 (#55)
Browse files Browse the repository at this point in the history
Bumps the version to v0.1.18
  • Loading branch information
olix0r authored Jan 15, 2021
1 parent 8462184 commit 4c42459
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.1.18

* Update tonic to v0.4

## v0.1.17

* Update Rust dependencies
Expand Down
24 changes: 19 additions & 5 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 rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linkerd2-proxy-api"
version = "0.1.17"
version = "0.1.18"
authors = ["Linkerd Developers <[email protected]>"]
license = "Apache-2.0"
publish = false
Expand All @@ -15,7 +15,7 @@ rustfmt = ["tonic-build/rustfmt"]
arbitrary = ["quickcheck", "rand"]

[dependencies]
tonic = { git = "https://github.com/QuentinPerez/tonic", branch = "qperez/upgrade-to-tokio-1", default-features = false, features = ["prost", "codegen"] }
tonic = { version = "0.4", default-features = false, features = ["prost", "codegen"] }
prost = "0.7"
prost-types = "0.7"
h2 = "0.3"
Expand All @@ -26,4 +26,4 @@ quickcheck = { version = "1", default-features = false, optional = true }
rand = { version = "0.8", optional = true }

[build-dependencies]
tonic-build = { git = "https://github.com/QuentinPerez/tonic", branch = "qperez/upgrade-to-tokio-1", features = ["prost"], default-features = false }
tonic-build = { version = "0.4", default-features = false, features = ["prost"] }

0 comments on commit 4c42459

Please sign in to comment.