-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
26 lines (23 loc) · 799 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module github.com/hiromaily/go-book-teacher
go 1.23
require (
github.com/BurntSushi/toml v1.4.0
github.com/PuerkitoBio/goquery v1.10.1
github.com/bookerzzz/grok v0.0.0
github.com/go-playground/validator/v10 v10.23.0
github.com/gomodule/redigo v1.9.2
github.com/pkg/errors v0.9.1
go.uber.org/zap v1.27.0
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
)