This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
go.mod
43 lines (40 loc) · 1.77 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
module github.com/drone-runners/drone-runner-exec
go 1.17
require (
github.com/buildkite/yaml v2.1.0+incompatible
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
github.com/drone/drone-go v1.0.5-0.20190504210458-4d6116b897ba
github.com/drone/envsubst v1.0.2
github.com/drone/runner-go v1.3.1
github.com/drone/signal v1.0.0
github.com/golang/mock v1.3.1
github.com/google/go-cmp v0.3.0
github.com/gosimple/slug v1.5.0
github.com/hashicorp/go-multierror v1.0.0
github.com/joho/godotenv v1.3.0
github.com/kardianos/service v1.0.0
github.com/kelseyhightower/envconfig v1.3.0
github.com/mattn/go-isatty v0.0.8
github.com/natessilva/dag v0.0.0-20180124060714-7194b8dcc5c4
github.com/orandin/lumberjackrus v1.0.1
github.com/sirupsen/logrus v1.8.1
golang.org/x/sync v0.0.0-20190423024810-112230192c58
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
require (
github.com/99designs/basicauth-go v0.0.0-20160802081356-2a93ba0f464d // indirect
github.com/99designs/httpsignatures-go v0.0.0-20170731043157-88528bf4ca7e // indirect
github.com/BurntSushi/toml v1.1.0 // indirect
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/bmatcuk/doublestar v1.1.1 // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 // indirect
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)