Skip to content

Commit

Permalink
Update to tonic 0.5 and prost 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Zabaluev committed Jul 12, 2021
1 parent cbfdb9e commit e5f586c
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 41 deletions.
126 changes: 92 additions & 34 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions jormungandr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-network = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-network = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "tonic-0.5" }
chain-storage = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
Expand Down Expand Up @@ -56,7 +56,7 @@ tracing-appender = "0.1.2"
tokio = { version = "^1.4", features = ["rt-multi-thread", "time", "sync", "rt", "signal", "test-util"] }
tokio-stream = { version = "0.1.4", features = ["sync"] }
tokio-util = { version = "0.6.0", features = ["time"] }
tonic = "0.4"
tonic = "0.5"
lru = "^0.6.1"
warp = { version = "0.3.0", features = ["tls"] }
serde_with = { version = "1.9", features = ["macros"] }
Expand Down
4 changes: 2 additions & 2 deletions testing/jormungandr-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = [ "dev@iohk.io" ]
edition = "2018"

[dependencies]
tonic = "0.4"
tonic = "0.5"
bech32 = "0.7"
prost = "0.7"
prost = "0.8"
tokio = { version = "1.4", features = ["macros", "time"] }
futures = "0.3.14"
base64 = "0.13"
Expand Down
6 changes: 3 additions & 3 deletions testing/jormungandr-testing-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tonic = "0.4"
prost = "0.7"
tonic = "0.5"
prost = "0.8"
tokio = { version = "1.4", features = ["macros","rt","rt-multi-thread"] }
tokio-stream = "0.1"
futures = "0.3.14"
Expand Down Expand Up @@ -74,4 +74,4 @@ default = []
property-test-api = [ ]

[build-dependencies]
tonic-build = "0.4"
tonic-build = "0.5"

0 comments on commit e5f586c

Please sign in to comment.