diff --git a/CHANGELOG.md b/CHANGELOG.md index 006a0e3..25a49d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## tonic - 2023-09-10 + +### Changed + +- tonic: Update `tonic` and `tonic-build` to v0.10.0. + ## rdkafka ### Added diff --git a/madsim-tonic-build/Cargo.toml b/madsim-tonic-build/Cargo.toml index 0c2e9cc..4b02181 100644 --- a/madsim-tonic-build/Cargo.toml +++ b/madsim-tonic-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "madsim-tonic-build" -version = "0.3.1+0.9.2" +version = "0.4.0+0.10.0" edition = "2021" authors = ["Lucio Franco ", "Runji Wang "] description = "Codegen module of `madsim-tonic` simulation implementation." @@ -13,12 +13,12 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -prettyplease = "0.1" +prettyplease = "0.2" proc-macro2 = "1" -prost-build = { version = "0.11", optional = true } +prost-build = { version = "0.12", optional = true } quote = "1" -syn = "1" -tonic-build = "0.9.2" +syn = "2" +tonic-build = "0.10.0" [features] compression = [] diff --git a/madsim-tonic/Cargo.toml b/madsim-tonic/Cargo.toml index bbf5f9d..d38128f 100644 --- a/madsim-tonic/Cargo.toml +++ b/madsim-tonic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "madsim-tonic" -version = "0.3.1+0.9.2" +version = "0.4.0+0.10.0" edition = "2021" authors = ["Runji Wang "] description = "The `tonic` simulator on madsim." @@ -16,7 +16,7 @@ license = "Apache-2.0" tls = ["tonic/tls"] [target.'cfg(not(madsim))'.dependencies] -tonic = "0.9.2" +tonic = "0.10.0" [target.'cfg(madsim)'.dependencies] async-stream = "0.3"