-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
40 lines (36 loc) · 1.37 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
37
38
39
40
module github.com/buro9/microcosm
go 1.21
require (
github.com/buro9/funcs v1.0.3
github.com/go-playground/validator/v10 v10.15.4
github.com/gorilla/csrf v1.7.1
github.com/gorilla/securecookie v1.1.1
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c
github.com/stretchr/testify v1.8.4
)
require (
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/leodido/go-urn v1.2.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bradfitz/gomemcache v0.0.0-20230611145640-acc696258285 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-chi/chi/v5 v5.0.10
github.com/go-playground/form/v4 v4.2.1
github.com/gorilla/css v1.0.0 // indirect
github.com/microcosm-cc/bluemonday v1.0.25 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
golang.org/x/net v0.14.0 // indirect
gopkg.in/oleiade/reflections.v1 v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)