-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
examples: update Go version and dependencies in example golang project
- Loading branch information
Showing
6 changed files
with
263 additions
and
2,071 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
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,16 +1,15 @@ | ||
module github.com/rpcpool/yellowstone-grpc/examples/golang | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
golang.org/x/net v0.5.0 // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230202175211-008b39050e57 // indirect | ||
google.golang.org/grpc v1.52.3 | ||
google.golang.org/protobuf v1.28.1 | ||
google.golang.org/grpc v1.67.1 | ||
google.golang.org/protobuf v1.35.1 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.6.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
) |
Oops, something went wrong.