-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathgo.mod
45 lines (43 loc) · 2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module github.com/carbonblack/cb-event-forwarder
require (
github.com/BurntSushi/toml v1.2.0 // indirect
github.com/RackSec/srslog v0.0.0-20180514150917-1f7cff998e92
github.com/Shopify/sarama v1.26.4
github.com/Showmax/go-fqdn v1.0.0
github.com/aws/aws-sdk-go v1.13.49
github.com/cyberdelia/go-metrics-graphite v0.0.0-20161219230853-39f87cc3b432
github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 // indirect
github.com/facebookgo/pidfile v0.0.0-20150612191647-f242e2999868
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-ini/ini v1.36.0
github.com/google/go-cmp v0.5.5
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
github.com/gorilla/mux v1.8.0
github.com/hpcloud/tail v1.0.0
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/klauspost/compress v1.10.4
github.com/klauspost/pgzip v1.2.3
github.com/mailru/easyjson v0.7.7
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/pierrec/lz4 v2.4.1+incompatible
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563
github.com/sirupsen/logrus v1.3.0
github.com/smartystreets/assertions v0.0.0-20190116191733-b6c0e53d7304 // indirect
github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c // indirect
github.com/streadway/amqp v0.0.0-20180315184602-8e4aba63da9f
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/oauth2 v0.0.0-20190212230446-3e8b2be13635
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.26.0
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/h2non/filetype.v1 v1.0.5
gopkg.in/ini.v1 v1.41.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)
go 1.13