-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.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
)