-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
38 lines (35 loc) · 1.53 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
module github.com/swisscom/bitbucket-cli
go 1.18
require (
github.com/adrg/xdg v0.4.0
github.com/alexflint/go-arg v1.3.0
github.com/fatih/color v1.13.0
github.com/gfleury/go-bitbucket-v1 v0.0.0-20200327185123-b3c7f99f7f5c
github.com/go-git/go-git/v5 v5.1.0
github.com/sirupsen/logrus v1.6.0
gopkg.in/yaml.v2 v2.2.8
)
require (
github.com/alexflint/go-scalar v1.0.0 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.0.0 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/imdario/mergo v0.3.9 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/xanzy/ssh-agent v0.2.1 // indirect
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073 // indirect
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect
google.golang.org/appengine v1.4.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)