-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>", "Runji Wang <[email protected]>"] | ||
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 = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" | ||
|