forked from Graylog2/collector-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
31 lines (28 loc) · 1.23 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
module github.com/Graylog2/collector-sidecar
go 1.19
require (
github.com/Sirupsen/logrus v0.11.0
github.com/docker/go-units v0.3.3
github.com/elastic/go-ucfg v0.7.0
github.com/elastic/gosigar v0.0.0-20160829190344-2716c1fe855e
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568
github.com/hashicorp/go-version v1.6.0
github.com/kardianos/service v1.2.1
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/pborman/uuid v0.0.0-20160216163710-c55201b03606
github.com/rifflock/lfshook v0.0.0-20161216150210-24f7833daaff
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/StackExchange/wmi v0.0.0-20160811214555-e54cbda6595d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ole/go-ole v1.2.1-0.20161116064658-5e9c030faf78 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/stretchr/testify v1.6.1 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
)