-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
74 lines (70 loc) · 3.17 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
72
73
74
module github.com/telia-oss/sidecred
go 1.17
require (
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/aws/aws-lambda-go v1.13.3
github.com/aws/aws-sdk-go v1.28.7
github.com/google/go-github/v45 v45.2.0
github.com/jfrog/jfrog-client-go v0.7.0
github.com/maxbrunsfeld/counterfeiter/v6 v6.4.1
github.com/stretchr/testify v1.7.0
github.com/telia-oss/aws-env v1.0.2
github.com/telia-oss/githubapp v0.7.0
go.uber.org/zap v1.13.0
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
sigs.k8s.io/yaml v1.1.0
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/bradleyfalzon/ghinstallation v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jfrog/gofrog v1.0.5 // indirect
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/kevinburke/ssh_config v0.0.0-20180830205328-81db2a75821e // indirect
github.com/mholt/archiver v2.1.0+incompatible // indirect
github.com/mitchellh/go-homedir v1.0.0 // indirect
github.com/nwaples/rardecode v1.0.0 // indirect
github.com/pelletier/go-buffruneio v0.2.0 // indirect
github.com/pierrec/lz4 v2.3.0+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/src-d/gcfg v1.3.0 // indirect
github.com/ulikunitz/xz v0.5.6 // indirect
github.com/xanzy/ssh-agent v0.2.0 // indirect
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/src-d/go-billy.v4 v4.3.0 // indirect
gopkg.in/src-d/go-git.v4 v4.7.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/frankban/quicktest v1.10.0 // indirect
github.com/google/go-github/v29 v29.0.3 // indirect
github.com/onsi/gomega v1.11.0
github.com/shurcooL/githubv4 v0.0.0-20220520033151-0b4e3294ff00 // indirect
github.com/shurcooL/graphql v0.0.0-20220606043923-3cf50f8a0a29 // indirect
go.uber.org/atomic v1.5.1 // indirect
go.uber.org/multierr v1.4.0 // indirect
golang.org/x/net v0.0.0-20220809012201-f428fae20770 // indirect
golang.org/x/oauth2 v0.0.0-20220808172628-8227340efae7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)