-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
go.mod
42 lines (38 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
41
42
module github.com/x1unix/go-playground
go 1.23
toolchain go1.23.1
require (
github.com/TheZeroSlave/zapsentry v1.10.0
github.com/avast/retry-go v3.0.0+incompatible
github.com/gorilla/mux v1.7.3
github.com/kelseyhightower/envconfig v1.4.0
github.com/pkg/errors v0.8.1
github.com/samber/lo v1.38.1
github.com/stretchr/testify v1.8.2
github.com/tevino/abool v0.0.0-20170917061928-9b9efcf221b5
github.com/traefik/yaegi v0.15.1
github.com/x1unix/foundation v1.0.0
go.uber.org/mock v0.4.0
go.uber.org/zap v1.21.0
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
golang.org/x/mod v0.14.0
golang.org/x/sync v0.7.0
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
)
require (
github.com/benbjohnson/clock v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/getsentry/sentry-go v0.13.0 // indirect
github.com/hashicorp/go-set/v3 v3.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/automaxprocs v1.6.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/sys v0.21.0 // indirect
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)