forked from uber/tchannel-go
-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
33 lines (30 loc) · 1.21 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
module github.com/temporalio/tchannel-go
go 1.17
require (
github.com/apache/thrift v0.16.0
github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b
github.com/cactus/go-statsd-client/v4 v4.0.0
github.com/crossdock/crossdock-go v0.0.0-20160816171116-049aabb0122b
github.com/jessevdk/go-flags v1.5.0
github.com/opentracing/opentracing-go v1.1.0
github.com/prashantv/protectmem v0.0.0-20171002184600-e20412882b3a
github.com/samuel/go-thrift v0.0.0-20190219015601-e8b6b52668fe
github.com/stretchr/testify v1.7.0
github.com/uber-go/tally v3.3.15+incompatible
github.com/uber/jaeger-client-go v2.22.1+incompatible
go.uber.org/atomic v1.7.0
go.uber.org/multierr v1.7.0
golang.org/x/net v0.7.0
golang.org/x/sys v0.5.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.1.0 // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)