-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
71 lines (68 loc) · 3.68 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
module github.com/rcowham/p4dbeat
go 1.14
require (
github.com/Shopify/sarama v1.27.0 // indirect
github.com/containerd/containerd v1.4.1 // indirect
github.com/dlclark/regexp2 v1.2.1 // indirect
github.com/docker/docker v1.13.1 // indirect
github.com/dop251/goja v0.0.0-20200912112403-81ddb8a7cc41 // indirect
github.com/dop251/goja_nodejs v0.0.0-20200811150831-9bc458b4bbeb // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/elastic/beats/v7 v7.9.1
github.com/elastic/ecs v1.6.0 // indirect
github.com/elastic/go-sysinfo v1.4.0 // indirect
github.com/elastic/go-txfile v0.0.8 // indirect
github.com/elastic/gosigar v0.11.0 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/garyburd/redigo v1.6.2 // indirect
github.com/go-logr/logr v0.2.1 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/gofrs/flock v0.8.0 // indirect
github.com/google/go-cmp v0.5.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/googleapis/gnostic v0.3.1 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hpcloud/tail v1.0.0
github.com/imdario/mergo v0.3.11 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/klauspost/compress v1.11.0 // indirect
github.com/magefile/mage v1.10.0
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/miekg/dns v1.1.31 // indirect
github.com/mitchellh/hashstructure v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/prometheus/procfs v0.1.3 // indirect
github.com/rcowham/go-libp4dlog v0.8.1
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.0.0 // indirect
github.com/urso/magetools v0.0.0-20200125210132-c2e338f92f3a // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
golang.org/x/sys v0.0.0-20200917073148-efd3b9a0ff20 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
golang.org/x/tools v0.0.0-20200918232735-d647fc253266 // indirect
howett.net/plist v0.0.0-20200419221736-3b63eb3a43b5 // indirect
k8s.io/klog/v2 v2.3.0 // indirect
k8s.io/utils v0.0.0-20200912215256-4140de9c8800 // indirect
)
// https://github.com/moby/moby/issues/40185
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible
github.com/Shopify/sarama => github.com/elastic/sarama v1.19.1-0.20200629123429-0e7b69039eec
github.com/cucumber/godog => github.com/cucumber/godog v0.8.1
github.com/docker/docker => github.com/docker/engine v0.0.0-20191113042239-ea84732a7725
github.com/docker/go-plugins-helpers => github.com/elastic/go-plugins-helpers v0.0.0-20200207104224-bdf17607b79f
github.com/dop251/goja => github.com/andrewkroh/goja v0.0.0-20190128172624-dd2ac4456e20
github.com/dop251/goja_nodejs => github.com/dop251/goja_nodejs v0.0.0-20171011081505-adff31b136e6
github.com/fsnotify/fsevents => github.com/elastic/fsevents v0.0.0-20181029231046-e1d381a4d270
github.com/fsnotify/fsnotify => github.com/adriansr/fsnotify v0.0.0-20180417234312-c9bbe1f46f1d
github.com/google/gopacket => github.com/adriansr/gopacket v1.1.18-0.20200327165309-dd62abfa8a41
github.com/insomniacslk/dhcp => github.com/elastic/dhcp v0.0.0-20200227161230-57ec251c7eb3 // indirect
github.com/tonistiigi/fifo => github.com/containerd/fifo v0.0.0-20190816180239-bda0ff6ed73c
golang.org/x/tools => golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0 // release 1.14
)