-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🆙 Go 1.18 * 🆙 update modules * 🔧 fix build tag
- Loading branch information
Showing
5 changed files
with
98 additions
and
51 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
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,17 +1,34 @@ | ||
module github.com/murosan/shogi-board-server | ||
|
||
go 1.15 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/labstack/echo/v4 v4.1.16 | ||
github.com/labstack/echo/v4 v4.7.2 | ||
github.com/murosan/goutils v0.0.0-20190506160604-a2da7259cdd8 | ||
go.uber.org/zap v1.21.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
honnef.co/go/tools v0.3.2 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.1.0 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/labstack/gommon v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
go.uber.org/zap v1.14.1 | ||
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect | ||
golang.org/x/exp/typeparams v0.0.0-20220518171630-0b5c67f07fdf // indirect | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect | ||
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect | ||
golang.org/x/sys v0.0.0-20200331124033-c3d80250170d // indirect | ||
golang.org/x/tools v0.0.0-20200401192744-099440627f01 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 | ||
honnef.co/go/tools v0.0.1-2020.1.3 | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.0.0-20220526153639-5463443f8c37 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect | ||
golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect | ||
) |
Oops, something went wrong.