-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (23 loc) · 798 Bytes
/
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
module github.com/rdeusser/x
go 1.20
require (
github.com/fatih/color v1.16.0
github.com/google/gofuzz v1.2.0
github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e
github.com/stretchr/testify v1.8.4
go.uber.org/goleak v1.3.0
go.uber.org/zap v1.26.0
golang.org/x/tools v0.16.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1-0.20220308010035-d928460c8d68 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sys v0.14.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)