forked from newrelic/nri-flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
85 lines (82 loc) · 3.66 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module github.com/newrelic/nri-flex
go 1.19
require (
github.com/Knetic/govaluate v3.0.0+incompatible
github.com/SAP/go-hdb v0.107.3
github.com/aws/aws-lambda-go v1.11.1
github.com/aws/aws-sdk-go v1.44.69
github.com/basgys/goxml2json v1.1.0
github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec
github.com/docker/docker v20.10.17+incompatible
github.com/go-sql-driver/mysql v1.4.1
github.com/itchyny/gojq v0.11.0
github.com/jeremywohl/flatten v0.0.0-20180923035001-588fe0d4c603
github.com/lib/pq v1.2.0
github.com/newrelic/infra-integrations-sdk v3.2.0+incompatible
github.com/parnurzeal/gorequest v0.2.15
github.com/pkg/errors v0.9.1
github.com/pkg/sftp v1.11.0
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.32.1
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/sijms/go-ora/v2 v2.5.21
github.com/sirupsen/logrus v1.6.0
github.com/spf13/afero v1.2.2
github.com/stretchr/testify v1.7.1
github.com/vertica/vertica-sql-go v1.2.1
go.uber.org/ratelimit v0.2.0
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
golang.org/x/net v0.5.0
gopkg.in/src-d/go-git.v4 v4.12.0
gopkg.in/yaml.v2 v2.4.0
gotest.tools v2.2.0+incompatible
)
require (
github.com/Microsoft/go-winio v0.4.12 // indirect
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/itchyny/astgen-go v0.0.0-20200519013840-cf3ea398f645 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kevinburke/ssh_config v0.0.0-20180830205328-81db2a75821e // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/lestrrat-go/strftime v1.0.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pbnjay/strptime v0.0.0-20140226051138-5c05b0d668c9 // indirect
github.com/pelletier/go-buffruneio v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/src-d/gcfg v1.4.0 // indirect
github.com/tklauser/go-sysconf v0.3.10 // indirect
github.com/tklauser/numcpus v0.4.0 // indirect
github.com/xanzy/ssh-agent v0.2.1 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/exp v0.0.0-20220713135740-79cabaa25d75 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/src-d/go-billy.v4 v4.3.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.2.0 // indirect
)