forked from jinnatar/chadburn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
54 lines (51 loc) · 2.46 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
module github.com/PremoWeb/Chadburn
go 1.17
require (
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625
github.com/docker/docker v20.10.12+incompatible
github.com/fsouza/go-dockerclient v1.6.5
github.com/gobs/args v0.0.0-20180315064131-86002b4df18c
github.com/jessevdk/go-flags v1.4.0
github.com/mcuadros/go-defaults v1.2.0
github.com/mitchellh/mapstructure v1.3.3
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/robfig/cron/v3 v3.0.1
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b
gopkg.in/gcfg.v1 v1.2.3
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
)
require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Microsoft/go-winio v0.4.15-0.20200113171025-3fe6c5262873 // indirect
github.com/Microsoft/hcsshim v0.8.7 // indirect
github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f // indirect
github.com/containerd/containerd v1.3.0 // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/gorilla/mux v1.7.4 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/moby/sys/mount v0.1.1 // indirect
github.com/moby/sys/mountinfo v0.1.0 // indirect
github.com/moby/term v0.0.0-20200915141129-7f0af18e79f2 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runc v0.1.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.4.1 // indirect
go.opencensus.io v0.22.0 // indirect
golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
google.golang.org/grpc v1.27.1 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)