Skip to content

Commit 969ec72

Browse files
committed
chore: update libs
1 parent 57cf00c commit 969ec72

File tree

3 files changed

+128
-29
lines changed

3 files changed

+128
-29
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ frontend-build:
1111
backend-build:
1212
cd backend
1313
export GOGC=off
14-
export GOMEMLIMIT=96MiB
14+
export GOMEMLIMIT=128MiB
1515
#to support differen libc versions
1616
export CGO_ENABLED=0
1717
go build

backend/go.mod

+38-28
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,62 @@ module react-and-go
33
go 1.19
44

55
require (
6-
github.com/angular2guy/go-actuator v0.9.0 // indirect
7-
github.com/eclipse/paho.mqtt.golang v1.4.2 // indirect
6+
github.com/angular2guy/go-actuator v0.9.1
7+
github.com/eclipse/paho.mqtt.golang v1.4.2
8+
github.com/gin-gonic/gin v1.9.0
9+
github.com/go-co-op/gocron v1.19.0
10+
github.com/golang-jwt/jwt/v4 v4.5.0
11+
github.com/google/uuid v1.3.0
12+
github.com/joho/godotenv v1.5.1
13+
golang.org/x/crypto v0.8.0
14+
gorm.io/driver/postgres v1.5.0
15+
gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11
16+
)
17+
18+
require (
19+
github.com/bytedance/sonic v1.8.7 // indirect
20+
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
821
github.com/fatih/color v1.9.0 // indirect
922
github.com/fsnotify/fsnotify v1.4.9 // indirect
1023
github.com/gin-contrib/sse v0.1.0 // indirect
1124
github.com/gin-gonic/autotls v0.0.5 // indirect
12-
github.com/gin-gonic/gin v1.8.2 // indirect
1325
github.com/githubnemo/CompileDaemon v1.4.0 // indirect
14-
github.com/go-co-op/gocron v1.18.0 // indirect
15-
github.com/go-playground/locales v0.14.0 // indirect
16-
github.com/go-playground/universal-translator v0.18.0 // indirect
17-
github.com/go-playground/validator/v10 v10.11.1 // indirect
18-
github.com/goccy/go-json v0.10.0 // indirect
19-
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
20-
github.com/google/uuid v1.3.0 // indirect
21-
github.com/gorilla/websocket v1.4.2 // indirect
26+
github.com/go-playground/locales v0.14.1 // indirect
27+
github.com/go-playground/universal-translator v0.18.1 // indirect
28+
github.com/go-playground/validator/v10 v10.12.0 // indirect
29+
github.com/goccy/go-json v0.10.2 // indirect
30+
github.com/gorilla/websocket v1.5.0 // indirect
2231
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
23-
github.com/jackc/pgconn v1.13.0 // indirect
32+
github.com/jackc/pgconn v1.14.0 // indirect
2433
github.com/jackc/pgio v1.0.0 // indirect
2534
github.com/jackc/pgpassfile v1.0.0 // indirect
26-
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
35+
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
2736
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
28-
github.com/jackc/pgtype v1.13.0 // indirect
29-
github.com/jackc/pgx/v4 v4.17.2 // indirect
37+
github.com/jackc/pgtype v1.14.0 // indirect
38+
github.com/jackc/pgx/v4 v4.18.1 // indirect
39+
github.com/jackc/pgx/v5 v5.3.1 // indirect
3040
github.com/jinzhu/inflection v1.0.0 // indirect
3141
github.com/jinzhu/now v1.1.5 // indirect
32-
github.com/joho/godotenv v1.4.0 // indirect
3342
github.com/json-iterator/go v1.1.12 // indirect
34-
github.com/leodido/go-urn v1.2.1 // indirect
43+
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
44+
github.com/leodido/go-urn v1.2.3 // indirect
3545
github.com/mattn/go-colorable v0.1.6 // indirect
36-
github.com/mattn/go-isatty v0.0.17 // indirect
46+
github.com/mattn/go-isatty v0.0.18 // indirect
3747
github.com/mattn/go-sqlite3 v1.14.16 // indirect
3848
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3949
github.com/modern-go/reflect2 v1.0.2 // indirect
40-
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
50+
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
4151
github.com/radovskyb/watcher v1.0.7 // indirect
4252
github.com/robfig/cron/v3 v3.0.1 // indirect
43-
github.com/ugorji/go/codec v1.2.8 // indirect
44-
golang.org/x/crypto v0.5.0 // indirect
45-
golang.org/x/net v0.5.0 // indirect
46-
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde // indirect
47-
golang.org/x/sys v0.4.0 // indirect
48-
golang.org/x/text v0.6.0 // indirect
49-
google.golang.org/protobuf v1.28.1 // indirect
53+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
54+
github.com/ugorji/go/codec v1.2.11 // indirect
55+
golang.org/x/arch v0.3.0 // indirect
56+
golang.org/x/net v0.9.0 // indirect
57+
golang.org/x/sync v0.1.0 // indirect
58+
golang.org/x/sys v0.7.0 // indirect
59+
golang.org/x/text v0.9.0 // indirect
60+
google.golang.org/protobuf v1.30.0 // indirect
5061
gopkg.in/yaml.v2 v2.4.0 // indirect
51-
gorm.io/driver/postgres v1.4.5 // indirect
62+
gopkg.in/yaml.v3 v3.0.1 // indirect
5263
gorm.io/driver/sqlite v1.4.3 // indirect
53-
gorm.io/gorm v1.24.2 // indirect
5464
)

0 commit comments

Comments
 (0)