-
Notifications
You must be signed in to change notification settings - Fork 23
/
go.mod
27 lines (24 loc) · 913 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
27
module github.com/ricardo-ch/go-kafka-connect/v3
go 1.17
require (
bou.ke/monkey v1.0.1
github.com/hashicorp/go-multierror v1.0.0
github.com/pkg/errors v0.8.1
github.com/spf13/cobra v0.0.1
github.com/stretchr/testify v1.2.2
gopkg.in/jarcoal/httpmock.v1 v1.0.0-20181117152235-275e9df93516
gopkg.in/resty.v1 v1.11.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
github.com/vektra/mockery v1.1.2 // indirect
golang.org/x/mod v0.2.0 // indirect
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
golang.org/x/tools v0.0.0-20200323144430-8dcfad9e016e // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
)