Skip to content

Commit 6d8a395

Browse files
committed
feat: update go and libs
1 parent 3cf03d5 commit 6d8a395

File tree

2 files changed

+105
-419
lines changed

2 files changed

+105
-419
lines changed

backend/go.mod

+31-42
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,56 @@
11
module react-and-go
22

3-
go 1.19
3+
go 1.23
44

55
require (
66
github.com/angular2guy/go-actuator v0.9.6
7-
github.com/eclipse/paho.mqtt.golang v1.4.2
8-
github.com/gin-gonic/gin v1.9.1
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
7+
github.com/eclipse/paho.mqtt.golang v1.5.0
8+
github.com/gin-contrib/gzip v1.0.1
9+
github.com/gin-gonic/gin v1.10.0
10+
github.com/go-co-op/gocron v1.37.0
11+
github.com/golang-jwt/jwt/v4 v4.5.1
12+
github.com/google/uuid v1.6.0
1213
github.com/joho/godotenv v1.5.1
13-
golang.org/x/crypto v0.21.0
14-
gorm.io/driver/postgres v1.5.0
15-
gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11
14+
golang.org/x/crypto v0.29.0
15+
gorm.io/driver/postgres v1.5.10
16+
gorm.io/gorm v1.25.12
1617
)
1718

1819
require (
19-
github.com/bytedance/sonic v1.11.3 // indirect
20-
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
21-
github.com/chenzhuoyu/iasm v0.9.1 // indirect
22-
github.com/fatih/color v1.9.0 // indirect
23-
github.com/fsnotify/fsnotify v1.4.9 // indirect
24-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
25-
github.com/gin-contrib/gzip v1.0.0 // indirect
20+
github.com/bytedance/sonic v1.12.5 // indirect
21+
github.com/bytedance/sonic/loader v0.2.1 // indirect
22+
github.com/cloudwego/base64x v0.1.4 // indirect
23+
github.com/cloudwego/iasm v0.2.0 // indirect
24+
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
2625
github.com/gin-contrib/sse v0.1.0 // indirect
27-
github.com/gin-gonic/autotls v0.0.5 // indirect
28-
github.com/githubnemo/CompileDaemon v1.4.0 // indirect
2926
github.com/go-playground/locales v0.14.1 // indirect
3027
github.com/go-playground/universal-translator v0.18.1 // indirect
31-
github.com/go-playground/validator/v10 v10.19.0 // indirect
32-
github.com/goccy/go-json v0.10.2 // indirect
33-
github.com/gorilla/websocket v1.5.0 // indirect
34-
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
35-
github.com/jackc/pgconn v1.14.0 // indirect
36-
github.com/jackc/pgio v1.0.0 // indirect
28+
github.com/go-playground/validator/v10 v10.23.0 // indirect
29+
github.com/goccy/go-json v0.10.3 // indirect
30+
github.com/gorilla/websocket v1.5.3 // indirect
3731
github.com/jackc/pgpassfile v1.0.0 // indirect
38-
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
39-
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
40-
github.com/jackc/pgtype v1.14.0 // indirect
41-
github.com/jackc/pgx/v4 v4.18.1 // indirect
42-
github.com/jackc/pgx/v5 v5.3.1 // indirect
32+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
33+
github.com/jackc/pgx/v5 v5.7.1 // indirect
34+
github.com/jackc/puddle/v2 v2.2.2 // indirect
4335
github.com/jinzhu/inflection v1.0.0 // indirect
4436
github.com/jinzhu/now v1.1.5 // indirect
4537
github.com/json-iterator/go v1.1.12 // indirect
46-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
38+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
4739
github.com/leodido/go-urn v1.4.0 // indirect
48-
github.com/mattn/go-colorable v0.1.6 // indirect
4940
github.com/mattn/go-isatty v0.0.20 // indirect
50-
github.com/mattn/go-sqlite3 v1.14.16 // indirect
5141
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5242
github.com/modern-go/reflect2 v1.0.2 // indirect
53-
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
54-
github.com/radovskyb/watcher v1.0.7 // indirect
43+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
5544
github.com/robfig/cron/v3 v3.0.1 // indirect
5645
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
5746
github.com/ugorji/go/codec v1.2.12 // indirect
58-
golang.org/x/arch v0.7.0 // indirect
59-
golang.org/x/net v0.22.0 // indirect
60-
golang.org/x/sync v0.1.0 // indirect
61-
golang.org/x/sys v0.18.0 // indirect
62-
golang.org/x/text v0.14.0 // indirect
63-
google.golang.org/protobuf v1.33.0 // indirect
64-
gopkg.in/yaml.v2 v2.4.0 // indirect
47+
go.uber.org/atomic v1.11.0 // indirect
48+
golang.org/x/arch v0.12.0 // indirect
49+
golang.org/x/net v0.31.0 // indirect
50+
golang.org/x/sync v0.9.0 // indirect
51+
golang.org/x/sys v0.27.0 // indirect
52+
golang.org/x/text v0.20.0 // indirect
53+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
54+
google.golang.org/protobuf v1.35.2 // indirect
6555
gopkg.in/yaml.v3 v3.0.1 // indirect
66-
gorm.io/driver/sqlite v1.4.3 // indirect
6756
)

0 commit comments

Comments
 (0)