2018-10-29 02:54:15 +02:00
|
|
|
module github.com/goreleaser/goreleaser
|
|
|
|
|
2019-09-13 14:53:56 +02:00
|
|
|
go 1.13.
|
2019-09-09 15:17:30 +02:00
|
|
|
|
2018-10-29 02:54:15 +02:00
|
|
|
require (
|
2019-09-13 14:53:56 +02:00
|
|
|
cloud.google.com/go v0.45.1 // indirect
|
2019-08-26 09:31:38 +02:00
|
|
|
code.gitea.io/gitea v1.10.0-dev.0.20190711052757-a0820e09fbf7
|
|
|
|
code.gitea.io/sdk/gitea v0.0.0-20190802154435-bbad0d915e44
|
2019-09-13 14:53:56 +02:00
|
|
|
github.com/Azure/azure-pipeline-go v0.2.2 // indirect
|
|
|
|
github.com/Azure/azure-sdk-for-go v33.2.0+incompatible // indirect
|
|
|
|
github.com/Azure/azure-storage-blob-go v0.8.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest v0.9.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
|
|
|
|
github.com/Masterminds/semver v1.5.0
|
|
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
|
|
github.com/alecthomas/units v0.0.0-20190910110746-680d30ca3117 // indirect
|
|
|
|
github.com/apex/log v1.1.1
|
|
|
|
github.com/aws/aws-sdk-go v1.23.20
|
|
|
|
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb // indirect
|
2018-10-29 02:54:15 +02:00
|
|
|
github.com/caarlos0/ctrlc v1.0.0
|
|
|
|
github.com/campoy/unique v0.0.0-20180121183637-88950e537e7e
|
|
|
|
github.com/fatih/color v1.7.0
|
2019-09-13 14:53:56 +02:00
|
|
|
github.com/google/go-github/v25 v25.1.3
|
2019-08-31 15:39:38 +02:00
|
|
|
github.com/goreleaser/nfpm v0.13.0
|
2019-09-13 14:53:56 +02:00
|
|
|
github.com/imdario/mergo v0.3.7
|
2019-08-26 09:31:38 +02:00
|
|
|
github.com/jarcoal/httpmock v0.0.0-20180424175123-9c70cfe4a1da
|
2019-09-13 14:53:56 +02:00
|
|
|
github.com/kamilsk/retry/v4 v4.3.1
|
|
|
|
github.com/mattn/go-ieproxy v0.0.0-20190805055040-f9202b1cfdeb // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.9 // indirect
|
|
|
|
github.com/mattn/go-zglob v0.0.1
|
2019-06-29 16:02:40 +02:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2019-06-05 15:51:01 +02:00
|
|
|
github.com/pkg/errors v0.8.1
|
2019-09-13 14:53:56 +02:00
|
|
|
github.com/stretchr/testify v1.4.0
|
|
|
|
github.com/xanzy/go-gitlab v0.20.1
|
|
|
|
go.opencensus.io v0.22.1 // indirect
|
|
|
|
gocloud.dev v0.17.0
|
|
|
|
golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20190909003024-a7b16738d86b // indirect
|
|
|
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
|
|
|
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
|
|
|
|
golang.org/x/sys v0.0.0-20190911201528-7ad0cfa0b7b5 // indirect
|
|
|
|
google.golang.org/api v0.10.0 // indirect
|
|
|
|
google.golang.org/appengine v1.6.2 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51 // indirect
|
|
|
|
google.golang.org/grpc v1.23.1 // indirect
|
2019-01-22 05:12:17 +02:00
|
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
2019-08-26 09:31:38 +02:00
|
|
|
gopkg.in/yaml.v2 v2.2.2
|
2018-10-29 02:54:15 +02:00
|
|
|
)
|
2019-09-09 15:17:30 +02:00
|
|
|
|
|
|
|
// related to an invalid pseudo version in code.gitea.io/gitea v1.10.0-dev.0.20190711052757-a0820e09fbf7
|
2019-09-13 14:53:56 +02:00
|
|
|
replace (
|
|
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
|
|
|
|
github.com/go-macaron/cors => github.com/go-macaron/cors v0.0.0-20190418220122-6fd6a9bfe14e
|
|
|
|
)
|