mirror of https://github.com/portainer/portainer
61 lines
2.7 KiB
Modula-2
61 lines
2.7 KiB
Modula-2
module github.com/portainer/portainer/api
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
|
github.com/Microsoft/go-winio v0.4.16
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
|
|
github.com/boltdb/bolt v1.3.1
|
|
github.com/containerd/containerd v1.3.1 // indirect
|
|
github.com/coreos/go-semver v0.3.0
|
|
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/docker/cli v0.0.0-20191126203649-54d085b857e9
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
|
github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/g07cha/defender v0.0.0-20180505193036-5665c627c814
|
|
github.com/go-git/go-git/v5 v5.3.0
|
|
github.com/go-ldap/ldap/v3 v3.1.8
|
|
github.com/gofrs/uuid v3.2.0+incompatible
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/gorilla/securecookie v1.1.1
|
|
github.com/gorilla/websocket v1.4.1
|
|
github.com/joho/godotenv v1.3.0
|
|
github.com/jpillora/chisel v0.0.0-20190724232113-f3a8df20e389
|
|
github.com/json-iterator/go v1.1.10
|
|
github.com/koding/websocketproxy v0.0.0-20181220232114-7ed82d81a28c
|
|
github.com/mattn/go-shellwords v1.0.6 // indirect
|
|
github.com/mitchellh/mapstructure v1.1.2 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.1 // indirect
|
|
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/portainer/docker-compose-wrapper v0.0.0-20210909083948-8be0d98451a1
|
|
github.com/portainer/libcrypto v0.0.0-20210422035235-c652195c5c3a
|
|
github.com/portainer/libhelm v0.0.0-20210929000907-825e93d62108
|
|
github.com/portainer/libhttp v0.0.0-20190806161843-ba068f58be33
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
|
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
gotest.tools v2.2.0+incompatible // indirect
|
|
k8s.io/api v0.17.2
|
|
k8s.io/apimachinery v0.17.2
|
|
k8s.io/client-go v0.17.2
|
|
)
|
|
|
|
replace github.com/docker/docker => github.com/docker/engine v1.4.2-0.20200204220554-5f6d6f3f2203
|
|
|
|
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456
|