-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Google's gRPC libraries have removed the Data field from the payload structs in the stats package. This change updates the larking library to support the newer gRPC libraries.
- Loading branch information
Showing
5 changed files
with
34 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
module larking.io | ||
|
||
go 1.20 | ||
go 1.22.7 | ||
|
||
toolchain go1.22.9 | ||
|
||
require ( | ||
github.com/gobwas/ws v1.2.0 | ||
github.com/google/go-cmp v0.5.9 | ||
golang.org/x/net v0.9.0 | ||
golang.org/x/sync v0.1.0 | ||
github.com/google/go-cmp v0.6.0 | ||
golang.org/x/net v0.29.0 | ||
golang.org/x/sync v0.8.0 | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 | ||
google.golang.org/grpc v1.54.0 | ||
google.golang.org/protobuf v1.30.1-0.20230501154320-cf06b0c33cda | ||
google.golang.org/grpc v1.68.0 | ||
google.golang.org/protobuf v1.34.2 | ||
) | ||
|
||
require ( | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
) |
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
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