-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
40 lines (36 loc) · 1.32 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/ekristen/go-project-template
go 1.22
toolchain go1.22.0
require (
github.com/bool64/ctxd v1.2.1
github.com/go-chi/chi/v5 v5.2.0
github.com/rancher/wrangler v1.1.2
github.com/stretchr/testify v1.10.0
github.com/swaggest/jsonschema-go v0.3.72
github.com/swaggest/openapi-go v0.2.54
github.com/swaggest/rest v0.2.70
github.com/swaggest/swgui v1.8.2
github.com/swaggest/usecase v1.3.1
github.com/urfave/cli/v2 v2.27.5
go.uber.org/zap v1.27.0
golang.org/x/term v0.5.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/santhosh-tekuri/jsonschema/v3 v3.1.0 // indirect
github.com/swaggest/form/v5 v5.1.1 // indirect
github.com/swaggest/refl v1.3.0 // indirect
github.com/vearutop/statigz v1.4.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/sys v0.26.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)