-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
32 lines (29 loc) · 1.13 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
module github.com/danielgtaylor/apibin
go 1.20
require (
github.com/andybalholm/brotli v1.1.0
github.com/danielgtaylor/huma/v2 v2.4.0
github.com/fxamacker/cbor/v2 v2.5.0
github.com/go-chi/chi/v5 v5.0.11
github.com/spf13/cobra v1.8.0
github.com/zeebo/xxh3 v1.0.2
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/danielgtaylor/casing v1.0.0 // indirect
github.com/danielgtaylor/mexpr v1.9.0 // indirect
github.com/danielgtaylor/shorthand/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
github.com/go-chi/chi v4.1.2+incompatible // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/sys v0.16.0 // indirect
)