Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
drone-runner-aws/go.mod
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
75 lines (71 sloc)
3.3 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module github.com/drone-runners/drone-runner-aws | |
| go 1.17 | |
| replace github.com/docker/docker => github.com/docker/engine v17.12.0-ce-rc1.0.20200309214505-aa6a9891b09c+incompatible | |
| require ( | |
| github.com/Masterminds/squirrel v1.5.2 | |
| github.com/aws/aws-sdk-go v1.42.10 | |
| github.com/buildkite/yaml v2.1.0+incompatible | |
| github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9 | |
| github.com/drone/drone-go v1.7.1 | |
| github.com/drone/envsubst v1.0.3 | |
| github.com/drone/runner-go v1.12.0 | |
| github.com/drone/signal v1.0.0 | |
| github.com/ghodss/yaml v1.0.0 | |
| github.com/go-chi/chi/v5 v5.0.7 | |
| github.com/google/go-cmp v0.5.5 | |
| github.com/google/wire v0.5.0 | |
| github.com/harness/lite-engine v0.0.2-0.20220223100350-d462b20d1a43 | |
| github.com/jmoiron/sqlx v1.3.4 | |
| github.com/joho/godotenv v1.4.0 | |
| github.com/kelseyhightower/envconfig v1.4.0 | |
| github.com/lib/pq v1.10.4 | |
| github.com/maragudk/migrate v0.4.1 | |
| github.com/mattn/go-isatty v0.0.14 | |
| github.com/mattn/go-sqlite3 v1.14.7 | |
| github.com/rs/zerolog v1.26.1 | |
| github.com/sirupsen/logrus v1.8.1 | |
| github.com/stretchr/testify v1.6.1 | |
| golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 | |
| golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | |
| google.golang.org/api v0.30.0 | |
| gopkg.in/alecthomas/kingpin.v2 v2.2.6 | |
| ) | |
| require ( | |
| cloud.google.com/go v0.65.0 // indirect | |
| github.com/99designs/basicauth-go v0.0.0-20160802081356-2a93ba0f464d // indirect | |
| github.com/99designs/httpsignatures-go v0.0.0-20170731043157-88528bf4ca7e // indirect | |
| github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | |
| github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a // indirect | |
| github.com/bmatcuk/doublestar v1.1.1 // indirect | |
| github.com/cenkalti/backoff/v4 v4.1.1 // indirect | |
| github.com/coreos/go-semver v0.3.0 // indirect | |
| github.com/davecgh/go-spew v1.1.1 // indirect | |
| github.com/docker/distribution v2.7.1+incompatible // indirect | |
| github.com/docker/go-units v0.4.0 // indirect | |
| github.com/gofrs/uuid v4.0.0+incompatible // indirect | |
| github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | |
| github.com/golang/protobuf v1.5.2 // indirect | |
| github.com/googleapis/gax-go/v2 v2.0.5 // indirect | |
| github.com/hashicorp/errwrap v1.0.0 // indirect | |
| github.com/hashicorp/go-multierror v1.0.0 // indirect | |
| github.com/jmespath/go-jmespath v0.4.0 // indirect | |
| github.com/kr/pretty v0.2.0 // indirect | |
| github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | |
| github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | |
| github.com/natessilva/dag v0.0.0-20180124060714-7194b8dcc5c4 // indirect | |
| github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | |
| github.com/pkg/errors v0.9.1 // indirect | |
| github.com/pmezard/go-difflib v1.0.0 // indirect | |
| go.opencensus.io v0.22.4 // indirect | |
| golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e // indirect | |
| golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | |
| golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect | |
| golang.org/x/text v0.3.6 // indirect | |
| golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | |
| google.golang.org/appengine v1.6.7 // indirect | |
| google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect | |
| google.golang.org/grpc v1.31.0 // indirect | |
| google.golang.org/protobuf v1.27.1 // indirect | |
| gopkg.in/yaml.v2 v2.4.0 // indirect | |
| gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | |
| ) |