-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* go: upgrade go compiler to 1.21 Use crypto/rand instead of math/rand as it is now the recommended method. * server: add cors configuration to items This lets other web pages use it as an external API. * go.mod: upgrade go version and indirect dependencies
- Loading branch information
Showing
7 changed files
with
50 additions
and
28 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,4 +1,4 @@ | ||
FROM golang:1.20 AS builder | ||
FROM golang:1.21 AS builder | ||
|
||
ENV GOPATH /go | ||
RUN apt-get update && \ | ||
|
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,18 +1,46 @@ | ||
module github.com/mrdoob/glsl-sandbox | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/jmoiron/sqlx v1.3.5 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/labstack/echo/v4 v4.10.2 | ||
github.com/labstack/gommon v0.4.0 | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/uptrace/bun/driver/sqliteshim v1.0.8 | ||
golang.org/x/crypto v0.6.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.7 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
lukechampine.com/uint128 v1.1.1 // indirect | ||
modernc.org/cc/v3 v3.33.6 // indirect | ||
modernc.org/ccgo/v3 v3.9.5 // indirect | ||
modernc.org/libc v1.9.11 // indirect | ||
modernc.org/mathutil v1.4.0 // indirect | ||
modernc.org/memory v1.0.4 // indirect | ||
modernc.org/opt v0.1.1 // indirect | ||
modernc.org/sqlite v1.11.2 // indirect | ||
modernc.org/strutil v1.1.1 // indirect | ||
modernc.org/token v1.0.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