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

feat: Update prost to 0.10 #948

Merged
merged 2 commits into from Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/extern_path/my_application/Cargo.toml
Expand Up @@ -9,8 +9,8 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
prost = "0.9"
prost-types = "0.9"
prost = "0.10"
prost-types = "0.10"
tonic = {path = "../../../tonic"}
uuid = {package = "uuid1", path = "../uuid"}

Expand Down
4 changes: 2 additions & 2 deletions tests/extern_path/uuid/Cargo.toml
Expand Up @@ -10,6 +10,6 @@ version = "0.1.0"

[dependencies]
bytes = "1.0"
prost = "0.9"
prost = "0.10"
[build-dependencies]
prost-build = "0.9"
prost-build = "0.10"
4 changes: 2 additions & 2 deletions tests/wellknown-compiled/Cargo.toml
Expand Up @@ -12,9 +12,9 @@ version = "0.1.0"
doctest = false

[dependencies]
prost = "0.9"
prost = "0.10"
tonic = {path = "../../tonic"}

[build-dependencies]
prost-build = "0.9"
prost-build = "0.10"
tonic-build = {path = "../../tonic-build"}
2 changes: 1 addition & 1 deletion tonic-build/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ version = "0.6.2"
[dependencies]
prettyplease = {version = "0.1"}
proc-macro2 = "1.0"
prost-build = {version = "0.9", optional = true}
prost-build = {version = "0.10", optional = true}
quote = "1.0"
syn = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions tonic-types/Cargo.toml
Expand Up @@ -15,8 +15,8 @@ repository = "https://github.com/hyperium/tonic"
version = "0.4.0"

[dependencies]
prost = "0.9"
prost-types = "0.9"
prost = "0.10"
prost-types = "0.10"

[build-dependencies]
prost-build = "0.9"
prost-build = "0.10"