2018-10-29 02:54:15 +02:00
|
|
|
module github.com/goreleaser/goreleaser
|
|
|
|
|
2020-08-16 16:29:44 +02:00
|
|
|
go 1.15
|
2019-09-09 15:17:30 +02:00
|
|
|
|
2018-10-29 02:54:15 +02:00
|
|
|
require (
|
2020-07-09 18:16:46 +02:00
|
|
|
code.gitea.io/sdk/gitea v0.12.1
|
2020-04-17 09:30:31 +02:00
|
|
|
github.com/Masterminds/semver/v3 v3.1.0
|
2020-08-06 15:01:05 +02:00
|
|
|
github.com/apex/log v1.8.0
|
2018-10-29 02:54:15 +02:00
|
|
|
github.com/caarlos0/ctrlc v1.0.0
|
|
|
|
github.com/campoy/unique v0.0.0-20180121183637-88950e537e7e
|
2020-05-10 21:34:55 +02:00
|
|
|
github.com/client9/misspell v0.3.4
|
2020-01-13 10:54:10 +02:00
|
|
|
github.com/fatih/color v1.9.0
|
2020-08-04 05:21:26 +02:00
|
|
|
github.com/golangci/golangci-lint v1.30.0
|
2019-10-06 17:39:53 +02:00
|
|
|
github.com/google/go-github/v28 v28.1.1
|
2020-08-06 12:02:17 +02:00
|
|
|
github.com/goreleaser/nfpm v1.6.0
|
2020-07-09 18:16:46 +02:00
|
|
|
github.com/hashicorp/go-version v1.2.1 // indirect
|
2020-08-12 14:13:04 +02:00
|
|
|
github.com/imdario/mergo v0.3.11
|
2020-08-10 14:55:22 +02:00
|
|
|
github.com/jarcoal/httpmock v1.0.6
|
2020-04-12 19:12:53 +02:00
|
|
|
github.com/mattn/go-shellwords v1.0.10
|
2020-07-21 14:22:55 +02:00
|
|
|
github.com/mattn/go-zglob v0.0.3
|
2019-06-29 16:02:40 +02:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2020-01-26 16:49:18 +02:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-04-28 02:42:44 +02:00
|
|
|
github.com/spf13/cobra v1.0.0
|
2020-06-08 14:52:43 +02:00
|
|
|
github.com/stretchr/testify v1.6.1
|
2020-04-14 14:51:22 +02:00
|
|
|
github.com/ulikunitz/xz v0.5.7
|
2020-08-13 14:42:18 +02:00
|
|
|
github.com/xanzy/go-gitlab v0.35.1
|
2020-06-10 15:48:02 +02:00
|
|
|
gocloud.dev v0.20.0
|
2020-01-26 16:49:18 +02:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
2020-07-21 14:22:33 +02:00
|
|
|
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
|
2020-05-13 10:58:23 +02:00
|
|
|
gopkg.in/yaml.v2 v2.3.0
|
2018-10-29 02:54:15 +02:00
|
|
|
)
|
2020-08-14 15:14:48 +02:00
|
|
|
|
|
|
|
// https://github.com/mattn/go-shellwords/pull/39
|
|
|
|
replace github.com/mattn/go-shellwords => github.com/caarlos0/go-shellwords v1.0.11
|