Skip to content

Commit c78274e

Browse files
authored
feat: Update prost to 0.10 (#948)
1 parent 097e7e8 commit c78274e

File tree

20 files changed

+30
-30
lines changed

20 files changed

+30
-30
lines changed

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ path = "src/streaming/server.rs"
181181
[dependencies]
182182
async-stream = "0.3"
183183
futures = { version = "0.3", default-features = false, features = ["alloc"] }
184-
prost = "0.9"
184+
prost = "0.10"
185185
tokio = { version = "1.0", features = [ "rt-multi-thread", "time", "fs", "macros", "net",] }
186186
tokio-stream = { version = "0.1", features = ["net"] }
187187
tonic = { path = "../tonic", features = ["tls", "compression"] }
@@ -196,7 +196,7 @@ tracing-attributes = "0.1"
196196
tracing-futures = "0.2"
197197
tracing-subscriber = { version = "0.3", features = ["tracing-log"] }
198198
# Required for wellknown types
199-
prost-types = "0.9"
199+
prost-types = "0.10"
200200
# Hyper example
201201
http = "0.2"
202202
http-body = "0.4.2"

interop/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ futures-util = "0.3"
2424
http = "0.2"
2525
http-body = "0.4.2"
2626
hyper = "0.14"
27-
prost = "0.9"
28-
prost-derive = "0.9"
27+
prost = "0.10"
28+
prost-derive = "0.10"
2929
tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros", "fs"]}
3030
tokio-stream = "0.1"
3131
tonic = {path = "../tonic", features = ["tls"]}

tests/ambiguous_methods/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = "0.1.0"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
prost = "0.9"
12+
prost = "0.10"
1313
tonic = {path = "../../tonic"}
1414

1515
[build-dependencies]

tests/compression/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ http = "0.2"
1313
http-body = "0.4"
1414
hyper = "0.14.3"
1515
pin-project = "1.0"
16-
prost = "0.9"
16+
prost = "0.10"
1717
tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net"]}
1818
tokio-stream = {version = "0.1.5", features = ["net"]}
1919
tonic = {path = "../../tonic", features = ["compression"]}

tests/extern_path/my_application/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ version = "0.1.0"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
prost = "0.9"
13-
prost-types = "0.9"
12+
prost = "0.10"
13+
prost-types = "0.10"
1414
tonic = {path = "../../../tonic"}
1515
uuid = {package = "uuid1", path = "../uuid"}
1616

tests/extern_path/uuid/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ version = "0.1.0"
1010

1111
[dependencies]
1212
bytes = "1.0"
13-
prost = "0.9"
13+
prost = "0.10"
1414
[build-dependencies]
15-
prost-build = "0.9"
15+
prost-build = "0.10"

tests/included_service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = "0.1.0"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
prost = "0.9"
12+
prost = "0.10"
1313
tonic = {path = "../../tonic"}
1414

1515
[build-dependencies]

tests/integration_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version = "0.1.0"
1111
[dependencies]
1212
bytes = "1.0"
1313
futures-util = "0.3"
14-
prost = "0.9"
14+
prost = "0.10"
1515
tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net"]}
1616
tonic = {path = "../../tonic"}
1717

tests/root-crate-path/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
version = "0.1.0"
88

99
[dependencies]
10-
prost = "0.9"
10+
prost = "0.10"
1111
tonic = {path = "../../tonic"}
1212

1313
[build_dependencies]

tests/same_name/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = "0.1.0"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
prost = "0.9"
12+
prost = "0.10"
1313
tonic = {path = "../../tonic"}
1414

1515
[build-dependencies]

0 commit comments

Comments
 (0)