blob: bbd282f50e9e09b3f33a012d144944601f228495 [file] [log] [blame]
Mohammed Naser7eadd242022-09-01 18:53:16 -04001module github.com/vexxhost/atmosphere
2
3go 1.19
4
5require (
Mohammed Naserdabb1dc2022-09-06 14:45:59 -04006 code.gitea.io/sdk/gitea v0.15.1
7 github.com/go-git/go-billy/v5 v5.3.1
8 github.com/go-git/go-git/v5 v5.4.2
9 github.com/goccy/go-yaml v1.9.5
10 github.com/google/go-github/v47 v47.0.0
Mohammed Naser09d8ea82022-09-03 19:16:18 -040011 github.com/gophercloud/gophercloud v1.0.0
12 github.com/gophercloud/utils v0.0.0-20220704184730-55bdbbaec4ba
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040013 github.com/sirupsen/logrus v1.9.0
14 github.com/spf13/cobra v1.5.0
Mohammed Naser7eadd242022-09-01 18:53:16 -040015 github.com/stretchr/testify v1.8.0
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040016 golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
Mohammed Naser7eadd242022-09-01 18:53:16 -040017 gopkg.in/yaml.v3 v3.0.1
18)
19
20require (
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040021 github.com/Microsoft/go-winio v0.4.16 // indirect
22 github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
23 github.com/acomagu/bufpipe v1.0.3 // indirect
Mohammed Naser7eadd242022-09-01 18:53:16 -040024 github.com/davecgh/go-spew v1.1.1 // indirect
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040025 github.com/emirpasic/gods v1.12.0 // indirect
26 github.com/fatih/color v1.10.0 // indirect
27 github.com/go-git/gcfg v1.5.0 // indirect
28 github.com/golang/protobuf v1.3.2 // indirect
29 github.com/google/go-querystring v1.1.0 // indirect
30 github.com/hashicorp/go-version v1.2.1 // indirect
31 github.com/imdario/mergo v0.3.12 // indirect
32 github.com/inconshreveable/mousetrap v1.0.0 // indirect
33 github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
34 github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
35 github.com/mattn/go-colorable v0.1.8 // indirect
36 github.com/mattn/go-isatty v0.0.12 // indirect
37 github.com/mitchellh/go-homedir v1.1.0 // indirect
Mohammed Naser7eadd242022-09-01 18:53:16 -040038 github.com/pmezard/go-difflib v1.0.0 // indirect
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040039 github.com/sergi/go-diff v1.1.0 // indirect
40 github.com/spf13/pflag v1.0.5 // indirect
41 github.com/xanzy/ssh-agent v0.3.0 // indirect
42 golang.org/x/crypto v0.0.0-20211202192323-5770296d904e // indirect
43 golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
44 golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
Mohammed Naser09d8ea82022-09-03 19:16:18 -040045 golang.org/x/text v0.3.6 // indirect
Mohammed Naserdabb1dc2022-09-06 14:45:59 -040046 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
47 google.golang.org/appengine v1.6.7 // indirect
48 gopkg.in/warnings.v0 v0.1.2 // indirect
Mohammed Naser09d8ea82022-09-03 19:16:18 -040049 gopkg.in/yaml.v2 v2.4.0 // indirect
Mohammed Naser7eadd242022-09-01 18:53:16 -040050)