-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
1,389 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,47 @@ | ||
module github.com/DataDog/datadog-lambda-go | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.0 // indirect | ||
github.com/DataDog/datadog-go v4.4.0+incompatible | ||
github.com/Microsoft/go-winio v0.4.19 // indirect | ||
github.com/aws/aws-lambda-go v1.25.0 | ||
github.com/aws/aws-sdk-go v1.40.2 | ||
github.com/DataDog/datadog-go v4.8.3+incompatible | ||
github.com/aws/aws-lambda-go v1.29.0 | ||
github.com/aws/aws-sdk-go v1.43.37 | ||
github.com/aws/aws-xray-sdk-go v1.6.0 | ||
github.com/cenkalti/backoff v2.1.1+incompatible | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/philhofer/fwd v1.0.0 // indirect | ||
github.com/sony/gobreaker v0.4.1 | ||
github.com/cenkalti/backoff v2.2.1+incompatible | ||
github.com/sony/gobreaker v0.5.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
gopkg.in/DataDog/dd-trace-go.v1 v1.37.1 | ||
) | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.0 // indirect | ||
github.com/DataDog/datadog-agent/pkg/obfuscate v0.35.0 // indirect | ||
github.com/DataDog/datadog-go/v5 v5.1.0 // indirect | ||
github.com/DataDog/sketches-go v1.4.1 // indirect | ||
github.com/Microsoft/go-winio v0.5.2 // indirect | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgraph-io/ristretto v0.1.0 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/klauspost/compress v1.15.1 // indirect | ||
github.com/philhofer/fwd v1.1.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/tinylib/msgp v1.1.6 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasthttp v1.35.0 // indirect | ||
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect | ||
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/DataDog/dd-trace-go.v1 v1.30.0 | ||
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect | ||
google.golang.org/grpc v1.45.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.