-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
77 lines (72 loc) · 3.14 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module github.com/wrouesnel/badgeserv
require (
github.com/alecthomas/kong v0.6.1
github.com/brpaz/echozap v1.1.3
github.com/deepmap/oapi-codegen v1.11.0
github.com/flosch/pongo2/v6 v6.0.0
github.com/getkin/kin-openapi v0.104.0
github.com/go-resty/resty/v2 v2.7.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/integralist/go-findroot v0.0.0-20160518114804-ac90681525dc
github.com/labstack/echo-contrib v0.13.0
github.com/labstack/echo/v4 v4.9.1
github.com/magefile/mage v1.14.0
github.com/mholt/archiver v3.1.1+incompatible
github.com/mitchellh/mapstructure v1.5.0
github.com/muesli/go-app-paths v0.2.2
github.com/pelletier/go-toml/v2 v2.0.5
github.com/pkg/errors v0.9.1
github.com/rogpeppe/go-internal v1.9.0
github.com/samber/lo v1.32.0
github.com/tdewolff/minify v2.3.6+incompatible
go.uber.org/zap v1.23.0
go.withmatt.com/httpheaders v0.0.0-20220809015020-3dbe1127da7b
golang.org/x/image v0.0.0-20220902085622-e7cb96979f69
)
require (
github.com/dsnet/compress v0.0.1 // indirect
github.com/frankban/quicktest v1.14.3 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/nwaples/rardecode v1.1.3 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/tdewolff/parse v2.3.4+incompatible // indirect
github.com/tdewolff/test v1.0.7 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
golang.org/x/exp v0.0.0-20221012112151-59b0eab1532e // indirect
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/flowchartsman/swaggerui v0.0.0-20210303154956-0e71c297862e
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/invopop/yaml v0.2.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/prometheus/client_golang v1.13.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2 // indirect
golang.org/x/net v0.0.0-20221004154528-8021a29435af // indirect
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect
golang.org/x/text v0.3.8 // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1
)
go 1.18