Skip to content

Commit 2f90165

Browse files
committed
chore: update go dependencies
1 parent 4215d2f commit 2f90165

File tree

2 files changed

+162
-682
lines changed

2 files changed

+162
-682
lines changed

go.mod

Lines changed: 41 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,57 +4,64 @@ go 1.19
44

55
require (
66
github.com/creack/pty v1.1.18
7-
github.com/dustin/go-humanize v1.0.0
7+
github.com/dustin/go-humanize v1.0.1
88
github.com/gin-contrib/static v0.0.1
9-
github.com/gin-gonic/gin v1.7.7
10-
github.com/go-acme/lego/v4 v4.4.0
11-
github.com/go-co-op/gocron v1.15.0
12-
github.com/go-playground/locales v0.13.0
13-
github.com/go-playground/universal-translator v0.17.0
14-
github.com/go-playground/validator/v10 v10.4.1
9+
github.com/gin-gonic/gin v1.8.2
10+
github.com/go-acme/lego/v4 v4.10.0
11+
github.com/go-co-op/gocron v1.18.0
12+
github.com/go-playground/locales v0.14.1
13+
github.com/go-playground/universal-translator v0.18.1
14+
github.com/go-playground/validator/v10 v10.11.2
1515
github.com/golang-jwt/jwt v3.2.2+incompatible
16-
github.com/google/uuid v1.1.1
17-
github.com/gorilla/websocket v1.4.2
16+
github.com/google/uuid v1.3.0
17+
github.com/gorilla/websocket v1.5.0
1818
github.com/hpcloud/tail v1.0.0
1919
github.com/jpillora/overseer v1.1.6
20+
github.com/lib/pq v1.10.7
2021
github.com/pkg/errors v0.9.1
21-
github.com/shirou/gopsutil/v3 v3.21.7
22-
github.com/spf13/cast v1.3.1
22+
github.com/shirou/gopsutil/v3 v3.23.1
23+
github.com/spf13/cast v1.5.0
2324
github.com/tufanbarisyildirim/gonginx v0.0.0-20230104065106-9ae864d29eed
2425
github.com/unknwon/com v1.0.1
25-
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
26-
gopkg.in/ini.v1 v1.62.0
27-
gorm.io/driver/sqlite v1.1.4
28-
gorm.io/gorm v1.21.14
26+
golang.org/x/crypto v0.6.0
27+
gopkg.in/ini.v1 v1.67.0
28+
gorm.io/driver/sqlite v1.4.4
29+
gorm.io/gorm v1.24.5
2930
)
3031

3132
require (
3233
github.com/StackExchange/wmi v1.2.1 // indirect
33-
github.com/cenkalti/backoff/v4 v4.1.0 // indirect
34+
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
3435
github.com/gin-contrib/sse v0.1.0 // indirect
35-
github.com/go-ole/go-ole v1.2.5 // indirect
36-
github.com/golang/protobuf v1.3.4 // indirect
36+
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
37+
github.com/go-ole/go-ole v1.2.6 // indirect
38+
github.com/goccy/go-json v0.10.0 // indirect
3739
github.com/jinzhu/inflection v1.0.0 // indirect
38-
github.com/jinzhu/now v1.1.2 // indirect
40+
github.com/jinzhu/now v1.1.5 // indirect
3941
github.com/jpillora/s3 v1.1.4 // indirect
40-
github.com/json-iterator/go v1.1.9 // indirect
41-
github.com/leodido/go-urn v1.2.0 // indirect
42-
github.com/lib/pq v1.10.7 // indirect
43-
github.com/mattn/go-isatty v0.0.12 // indirect
44-
github.com/mattn/go-sqlite3 v1.14.5 // indirect
45-
github.com/miekg/dns v1.1.40 // indirect
42+
github.com/json-iterator/go v1.1.12 // indirect
43+
github.com/leodido/go-urn v1.2.1 // indirect
44+
github.com/lufia/plan9stats v0.0.0-20230110061619-bbe2e5e100de // indirect
45+
github.com/mattn/go-isatty v0.0.17 // indirect
46+
github.com/mattn/go-sqlite3 v1.14.16 // indirect
47+
github.com/miekg/dns v1.1.50 // indirect
4648
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
47-
github.com/modern-go/reflect2 v1.0.1 // indirect
49+
github.com/modern-go/reflect2 v1.0.2 // indirect
50+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
51+
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
4852
github.com/robfig/cron/v3 v3.0.1 // indirect
49-
github.com/tklauser/go-sysconf v0.3.7 // indirect
50-
github.com/tklauser/numcpus v0.2.3 // indirect
51-
github.com/ugorji/go/codec v1.1.7 // indirect
52-
golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d // indirect
53-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
54-
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
55-
golang.org/x/text v0.3.4 // indirect
53+
github.com/tklauser/go-sysconf v0.3.11 // indirect
54+
github.com/tklauser/numcpus v0.6.0 // indirect
55+
github.com/ugorji/go/codec v1.2.9 // indirect
56+
github.com/yusufpapurcu/wmi v1.2.2 // indirect
57+
golang.org/x/mod v0.8.0 // indirect
58+
golang.org/x/net v0.7.0 // indirect
59+
golang.org/x/sync v0.1.0 // indirect
60+
golang.org/x/sys v0.5.0 // indirect
61+
golang.org/x/text v0.7.0 // indirect
62+
golang.org/x/tools v0.6.0 // indirect
63+
google.golang.org/protobuf v1.28.1 // indirect
5664
gopkg.in/fsnotify.v1 v1.4.7 // indirect
57-
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
5865
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
5966
gopkg.in/yaml.v2 v2.4.0 // indirect
6067
)

0 commit comments

Comments
 (0)