Skip to content

Commit e5cc541

Browse files
committed
update tonic & prost dependencies
1 parent dc84c3b commit e5cc541

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ exclude = [
2121
]
2222

2323
[dependencies]
24-
tonic = "0.4"
25-
prost = "0.7"
24+
tonic = "0.5"
25+
prost = "0.8"
2626

2727
[build-dependencies]
28-
#tonic-build = "0.4"
29-
tonic-build = { git = 'https://github.com/ewilken/tonic.git' } # waiting for https://github.com/danburkert/prost/pull/455 to be released into tonic
28+
tonic-build = "0.5"
3029

3130
[dev-dependencies]
3231
async-stream = "0.3"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ service Device {
2424

2525
## Example Usage
2626

27-
Working examples for request/response and streaming communication are in the [`/examples`](https://github.com/ewilken/starlink-rs/tree/main/examples) directory.
27+
Working examples for request/response and streaming communication are in the [examples](examples) directory.
2828

2929
### Request / Response
3030

codegen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ authors = ["Elias Wilken <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
prost = "0.7"
9-
prost-types = "0.7"
8+
prost = "0.8"
9+
prost-types = "0.8"

proto/spacex/api/device/dish.proto

-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,3 @@ enum DishState {
7878
SEARCHING = 2;
7979
BOOTING = 3;
8080
}
81-

0 commit comments

Comments
 (0)