-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
32 lines (29 loc) · 962 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
27
28
29
30
31
32
module github.com/vgarvardt/rklotz
go 1.22
require (
github.com/asdine/storm/v3 v3.2.1
github.com/cappuccinotm/slogx v1.4.0
github.com/felixge/httpsnoop v1.0.4
github.com/go-chi/chi/v5 v5.2.0
github.com/go-pkgz/routegroup v1.2.0
github.com/gorilla/feeds v1.2.0
github.com/leekchan/gtf v0.0.0-20190214083521-5fba33c5b00b
github.com/sethvargo/go-envconfig v1.1.0
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
github.com/yuin/goldmark v1.7.8
golang.org/x/crypto v0.31.0
golang.org/x/sync v0.10.0
golang.org/x/text v0.21.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
go.etcd.io/bbolt v1.3.9 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)