forked from meltwater/drone-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
30 lines (28 loc) · 1.16 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
module github.com/meltwater/drone-cache
require (
cloud.google.com/go/storage v1.1.0
github.com/Azure/azure-storage-blob-go v0.8.0
github.com/Azure/go-autorest/autorest/adal v0.8.1 // indirect
github.com/aws/aws-sdk-go v1.16.35
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.0
github.com/go-kit/kit v0.9.0
github.com/go-logfmt/logfmt v0.4.0 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/google/go-cmp v0.4.0
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v1.10.1
github.com/urfave/cli/v2 v2.1.1
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
golang.org/x/mod v0.2.0 // indirect
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
golang.org/x/tools v0.0.0-20200204192400-7124308813f3 // indirect
google.golang.org/api v0.9.0
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.7 // indirect
honnef.co/go/tools v0.0.1-2020.1.3 // indirect
)
go 1.14