-
Notifications
You must be signed in to change notification settings - Fork 118
/
go.mod
32 lines (29 loc) · 1.05 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
module github.com/aws/aws-xray-sdk-go
go 1.19
require (
github.com/DATA-DOG/go-sqlmock v1.5.1
github.com/aws/aws-lambda-go v1.41.0
github.com/aws/aws-sdk-go v1.47.9
github.com/aws/aws-sdk-go-v2 v1.22.2
github.com/aws/aws-sdk-go-v2/service/route53 v1.6.2
github.com/aws/smithy-go v1.16.0
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.4
github.com/valyala/fasthttp v1.52.0
golang.org/x/net v0.26.0
google.golang.org/grpc v1.64.1
google.golang.org/protobuf v1.33.0
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.17.6 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)