-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
36 lines (33 loc) · 1.23 KB
/
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
33
34
35
36
module github.com/knoebber/dotfile
go 1.19
require (
github.com/go-playground/validator/v10 v10.15.5
github.com/gorilla/feeds v1.1.1
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/hexops/gotextdiff v1.0.3
github.com/knoebber/usererror v0.1.0
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/niklasfasching/go-org v1.3.2
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.2
golang.org/x/crypto v0.14.0
golang.org/x/sync v0.4.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.16.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)