-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
23 lines (20 loc) · 848 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
module github.com/zendesk/statsd-logger
go 1.17
require (
github.com/fatih/color v1.5.0
github.com/stretchr/testify v1.1.5-0.20170809224252-890a5c3458b4
github.com/vmihailenco/msgpack v4.0.0+incompatible
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/mattn/go-colorable v0.0.8 // indirect
github.com/mattn/go-isatty v0.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.0.0-20150928122152-1a9d0bb9f541 // indirect
golang.org/x/net v0.0.0-20181003013248-f5e5bdd77824 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20170728174421-0f826bdd13b5 // indirect
google.golang.org/appengine v1.2.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)