-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
go.mod
43 lines (40 loc) · 1.64 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
module github.com/caarlos0/starcharts
go 1.21
require (
github.com/alicebob/miniredis v2.5.0+incompatible
github.com/apex/httplog v1.0.0
github.com/apex/log v1.9.0
github.com/caarlos0/env/v6 v6.10.1
github.com/caarlos0/httperr v1.4.0
github.com/go-redis/cache v6.4.0+incompatible
github.com/go-redis/redis v6.15.9+incompatible
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/gorilla/mux v1.8.1
github.com/matryer/is v1.4.1
github.com/prometheus/client_golang v1.20.5
golang.org/x/image v0.23.0
golang.org/x/sync v0.10.0
gopkg.in/h2non/gock.v1 v1.1.2
gopkg.in/vmihailenco/msgpack.v2 v2.9.2
)
require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/gomodule/redigo v2.0.0+incompatible // indirect
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/onsi/ginkgo v1.7.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/vmihailenco/msgpack v4.0.2+incompatible // indirect
github.com/yuin/gopher-lua v0.0.0-20190514113301-1cd887cd7036 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sys v0.22.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)