-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
31 lines (28 loc) · 1.08 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
module github.com/muroon/datadog_sample
go 1.19
require (
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/protobuf v1.3.5
golang.org/x/net v0.7.0
google.golang.org/grpc v1.28.0
gopkg.in/DataDog/dd-trace-go.v1 v1.22.0
gopkg.in/yaml.v2 v2.2.8
)
require (
github.com/DataDog/datadog-go v3.5.0+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/lib/pq v1.1.1 // indirect
github.com/mattn/go-sqlite3 v1.11.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/philhofer/fwd v1.0.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.4.0 // indirect
github.com/tinylib/msgp v1.1.2 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)