-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b56972
commit 700f2a6
Showing
3 changed files
with
44 additions
and
48 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 |
---|---|---|
|
@@ -43,10 +43,10 @@ test: generate | |
|
||
install-deps: | ||
go install google.golang.org/protobuf/cmd/protoc-gen-go | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0 | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.5.1 | ||
go install github.com/favadi/[email protected] | ||
go install golang.org/x/tools/cmd/stringer@v0.18.0 | ||
go install honnef.co/go/tools/cmd/staticcheck@v0.4.7 | ||
go install golang.org/x/tools/cmd/stringer@v0.27.0 | ||
go install honnef.co/go/tools/cmd/staticcheck@v0.5.1 | ||
|
||
build: $(TARGETS) | ||
|
||
|
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,31 +1,31 @@ | ||
module wsnet2 | ||
|
||
go 1.22.0 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.2 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/go-sql-driver/mysql v1.8.1 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/jmoiron/sqlx v1.3.5 | ||
github.com/jmoiron/sqlx v1.4.0 | ||
github.com/pelletier/go-toml v1.9.5 | ||
github.com/shiguredo/websocket v1.6.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 | ||
google.golang.org/grpc v1.62.0 | ||
google.golang.org/protobuf v1.32.0 | ||
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da | ||
google.golang.org/grpc v1.68.0 | ||
google.golang.org/protobuf v1.35.2 | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // 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