Skip to content

Commit 7752c72

Browse files
committed
remove dependency on rustfmt
1 parent ba9911b commit 7752c72

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
profile: minimal
6060
toolchain: ${{ matrix.rust }}
6161
override: true
62-
components: rustfmt
6362
- name: Build only
6463
if: matrix.build-only
6564
uses: actions-rs/cargo@v1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starlink"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Elias Wilken <[email protected]>"]
55
edition = "2018"
66
description = "Rust client implementation to the gRPC endpoint exposed by the SpaceX Starlink user terminal"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Rust client implementation to the gRPC endpoint exposed by the SpaceX Starlink u
1111

1212
## Background
1313

14-
The Starlink dish exposes an unauthenticated gRPC HTTP/2 server on its local network under `192.168.100.1:9200` that allows for [server reflection](https://github.com/grpc/grpc/blob/master/doc/server-reflection.md). This contains the (probably still flawed) Protobuf definitions reversed out of it as well as a Rust client implementation being able to talk to the dish, for science. I might use this to build a Prometheus exporter or something.
14+
The Starlink dish exposes an unauthenticated gRPC HTTP/2 server on its local network under `192.168.100.1:9200` that allows for [server reflection](https://github.com/grpc/grpc/blob/master/doc/server-reflection.md). This contains the (probably still flawed) Protobuf definitions reversed out of it as well as a Rust client implementation being able to talk to the dish, for science.
1515

1616
The dish exposes two methods (as far as I could tell); one for request/response and one for streams:
1717

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
fn main() -> Result<(), Box<dyn std::error::Error>> {
22
tonic_build::configure()
33
.build_server(false)
4-
.format(true)
4+
.format(false)
55
.protoc_arg("--experimental_allow_proto3_optional")
66
.compile(
77
&[

0 commit comments

Comments
 (0)