Skip to content

Commit 9f4384a

Browse files
committed
update packages
1 parent 9613ca3 commit 9f4384a

File tree

3 files changed

+60
-149
lines changed

3 files changed

+60
-149
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
dev:
2-
air serve:main
2+
air serve:main
3+
4+
publish:
5+
docker build --platform linux/amd64 -t kirari04/videocms:alpha --push .

go.mod

Lines changed: 18 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,45 @@
11
module ch/kirari04/videocms
22

3-
go 1.24.0
4-
5-
toolchain go1.24.3
3+
go 1.25.5
64

75
require (
86
github.com/dpapathanasiou/go-recaptcha v0.0.0-20190121160230-be5090b17804
9-
github.com/go-playground/validator/v10 v10.28.0
7+
github.com/go-playground/validator/v10 v10.30.1
108
github.com/golang-jwt/jwt/v5 v5.3.0
11-
github.com/imroc/req/v3 v3.55.0
12-
github.com/labstack/echo/v4 v4.13.4
9+
github.com/imroc/req/v3 v3.57.0
10+
github.com/labstack/echo/v4 v4.15.0
1311
github.com/patrickmn/go-cache v2.1.0+incompatible
1412
github.com/thatisuday/commando v1.0.4
1513
github.com/xyproto/randomstring v1.2.0
16-
golang.org/x/net v0.46.0
17-
golang.org/x/term v0.36.0
14+
golang.org/x/net v0.48.0
15+
golang.org/x/term v0.38.0
1816
golang.org/x/time v0.14.0
1917
gopkg.in/vansante/go-ffprobe.v2 v2.2.1
2018
gorm.io/driver/sqlite v1.6.0
21-
gorm.io/gorm v1.31.0
19+
gorm.io/gorm v1.31.1
2220
)
2321

2422
require (
2523
github.com/andybalholm/brotli v1.2.0 // indirect
26-
github.com/cloudflare/circl v1.6.1 // indirect
2724
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
28-
github.com/gabriel-vasile/mimetype v1.4.10 // indirect
25+
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
2926
github.com/go-ole/go-ole v1.3.0 // indirect
30-
github.com/google/go-querystring v1.1.0 // indirect
31-
github.com/hashicorp/errwrap v1.1.0 // indirect
32-
github.com/hashicorp/go-multierror v1.1.1 // indirect
27+
github.com/google/go-querystring v1.2.0 // indirect
3328
github.com/icholy/digest v1.1.0 // indirect
34-
github.com/klauspost/compress v1.18.0 // indirect
29+
github.com/klauspost/compress v1.18.2 // indirect
3530
github.com/labstack/gommon v0.4.2 // indirect
3631
github.com/lufia/plan9stats v0.0.0-20251013123823-9fd1530e3ec3 // indirect
3732
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
3833
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
39-
github.com/quic-go/qpack v0.5.1 // indirect
40-
github.com/quic-go/quic-go v0.55.0 // indirect
34+
github.com/quic-go/qpack v0.6.0 // indirect
35+
github.com/quic-go/quic-go v0.58.0 // indirect
4136
github.com/refraction-networking/utls v1.8.1 // indirect
4237
github.com/shoenig/go-m1cpu v0.1.7 // indirect
4338
github.com/thatisuday/clapper v1.0.10 // indirect
44-
github.com/tklauser/go-sysconf v0.3.15 // indirect
45-
github.com/tklauser/numcpus v0.10.0 // indirect
39+
github.com/tklauser/go-sysconf v0.3.16 // indirect
40+
github.com/tklauser/numcpus v0.11.0 // indirect
4641
github.com/valyala/fasttemplate v1.2.2 // indirect
4742
github.com/yusufpapurcu/wmi v1.2.4 // indirect
48-
go.uber.org/mock v0.6.0 // indirect
49-
golang.org/x/mod v0.29.0 // indirect
50-
golang.org/x/sync v0.17.0 // indirect
51-
golang.org/x/tools v0.38.0 // indirect
5243
)
5344

5445
require (
@@ -61,10 +52,10 @@ require (
6152
github.com/leodido/go-urn v1.4.0 // indirect
6253
github.com/mattn/go-colorable v0.1.14 // indirect
6354
github.com/mattn/go-isatty v0.0.20 // indirect
64-
github.com/mattn/go-sqlite3 v1.14.32 // indirect
55+
github.com/mattn/go-sqlite3 v1.14.33 // indirect
6556
github.com/shirou/gopsutil/v3 v3.24.5
6657
github.com/valyala/bytebufferpool v1.0.0 // indirect
67-
golang.org/x/crypto v0.43.0
68-
golang.org/x/sys v0.37.0
69-
golang.org/x/text v0.30.0 // indirect
58+
golang.org/x/crypto v0.46.0
59+
golang.org/x/sys v0.39.0
60+
golang.org/x/text v0.32.0 // indirect
7061
)

0 commit comments

Comments
 (0)