mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 08:06:52 +02:00
cc30db44ac
* use async key pair for webhooks * fix tests * fix linter * improve code * add key pair to database * undo some changes * more undo * improve docs * add api-endpoint * add signaturne api endpoint * fix error * fix linting and test * fix lint * add test * migration 006 * no need for migration * replace httsign lib * fix lint Co-authored-by: 6543 <6543@obermui.de>
63 lines
2.6 KiB
Modula-2
63 lines
2.6 KiB
Modula-2
module github.com/woodpecker-ci/woodpecker
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
code.gitea.io/sdk/gitea v0.15.1-0.20220501190934-319a978c6c71
|
|
github.com/Microsoft/go-winio v0.5.1 // indirect
|
|
github.com/bmatcuk/doublestar/v4 v4.0.2
|
|
github.com/containerd/containerd v1.5.9 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
|
github.com/docker/cli v20.10.14+incompatible
|
|
github.com/docker/distribution v2.8.1+incompatible
|
|
github.com/docker/docker v20.10.14+incompatible
|
|
github.com/docker/docker-credential-helpers v0.6.4 // indirect
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/docker/go-units v0.4.0
|
|
github.com/drone/envsubst v1.0.3
|
|
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
|
|
github.com/franela/goblin v0.0.0-20211003143422-0a4f594942bf
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/go-ap/httpsig v0.0.0-20210714162115-62a09257db51
|
|
github.com/go-playground/validator/v10 v10.10.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/goccy/go-json v0.9.7 // indirect
|
|
github.com/gogits/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85
|
|
github.com/golang-jwt/jwt/v4 v4.4.1
|
|
github.com/golangci/golangci-lint v1.45.2
|
|
github.com/google/go-github/v39 v39.2.0
|
|
github.com/gorilla/securecookie v1.1.1
|
|
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/lib/pq v1.10.5
|
|
github.com/mattn/go-sqlite3 v1.14.12
|
|
github.com/melbahja/goph v1.3.0
|
|
github.com/moby/moby v20.10.14+incompatible
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/mrjones/oauth v0.0.0-20190623134757-126b35219450
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.12.1
|
|
github.com/rs/zerolog v1.26.1
|
|
github.com/stretchr/objx v0.3.0 // indirect
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/tevino/abool v1.2.0
|
|
github.com/ugorji/go v1.2.7 // indirect
|
|
github.com/urfave/cli/v2 v2.5.1
|
|
github.com/xanzy/go-gitlab v0.64.0
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonschema v1.2.0
|
|
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32 // indirect
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
|
|
google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 // indirect
|
|
google.golang.org/grpc v1.44.0
|
|
google.golang.org/protobuf v1.28.0
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
xorm.io/builder v0.3.10
|
|
xorm.io/xorm v1.3.0
|
|
)
|