1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/go.mod

62 lines
2.8 KiB
Modula-2
Raw Normal View History

2019-05-07 08:10:23 +00:00
module github.com/arangodb/kube-arangodb
2020-03-04 10:25:14 +00:00
go 1.13
2019-05-07 08:10:23 +00:00
replace (
2020-06-18 04:10:30 +00:00
github.com/arangodb/go-driver => github.com/arangodb/go-driver v0.0.0-20200617115956-9dac4c7fed22
github.com/coreos/prometheus-operator => github.com/coreos/prometheus-operator v0.37.0
2020-03-18 09:48:31 +00:00
github.com/stretchr/testify => github.com/stretchr/testify v1.5.1
2019-05-07 08:10:23 +00:00
github.com/ugorji/go => github.com/ugorji/go v0.0.0-20181209151446-772ced7fd4c2
2020-03-04 10:25:14 +00:00
k8s.io/api => k8s.io/api v0.15.9
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.15.9
k8s.io/apimachinery => k8s.io/apimachinery v0.15.9
k8s.io/client-go => k8s.io/client-go v0.15.9
2019-10-16 07:05:56 +00:00
k8s.io/code-generator => ./deps/k8s.io/code-generator
2019-05-07 08:10:23 +00:00
)
require (
2020-06-18 04:10:30 +00:00
github.com/aktau/github-release v0.8.1 // indirect
2019-05-07 08:10:23 +00:00
github.com/arangodb-helper/go-certificates v0.0.0-20180821055445-9fca24fc2680
github.com/arangodb/arangosync-client v0.6.3
2019-10-07 05:48:36 +00:00
github.com/arangodb/go-driver v0.0.0-20191002124627-11b6bfc64f67
2019-05-07 08:10:23 +00:00
github.com/arangodb/go-upgrade-rules v0.0.0-20180809110947-031b4774ff21
github.com/cenkalti/backoff v2.1.1+incompatible
github.com/coreos/go-semver v0.3.0
github.com/coreos/prometheus-operator v0.37.0
2019-05-07 08:10:23 +00:00
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/evanphx/json-patch v4.5.0+incompatible
2019-05-07 08:10:23 +00:00
github.com/ghodss/yaml v1.0.0
github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 // indirect
2019-05-07 08:10:23 +00:00
github.com/gin-gonic/gin v1.3.0
2020-06-18 04:10:30 +00:00
github.com/github-release/github-release v0.8.1 // indirect
github.com/google/addlicense v0.0.0-20200422172452-68a83edd47bc // indirect
github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1 // indirect
2019-05-07 08:10:23 +00:00
github.com/jessevdk/go-assets v0.0.0-20160921144138-4f4301a06e15
2020-01-27 06:33:12 +00:00
github.com/jessevdk/go-assets-builder v0.0.0-20130903091706-b8483521738f
github.com/julienschmidt/httprouter v1.3.0
2020-06-18 04:10:30 +00:00
github.com/kevinburke/rest v0.0.0-20200429221318-0d2892b400f8 // indirect
2019-11-04 07:49:24 +00:00
github.com/magiconair/properties v1.8.0
github.com/mattn/go-isatty v0.0.12 // indirect
2019-05-07 08:10:23 +00:00
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.2.1
github.com/robfig/cron v1.2.0
2019-05-07 08:10:23 +00:00
github.com/rs/zerolog v1.14.3
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5
2020-06-18 04:10:30 +00:00
github.com/stretchr/testify v1.5.1
2020-03-25 10:21:42 +00:00
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect
2020-03-04 10:25:14 +00:00
github.com/ugorji/go/codec v0.0.0-20181209151446-772ced7fd4c2 // indirect
2020-03-25 10:21:42 +00:00
github.com/voxelbrain/goptions v0.0.0-20180630082107-58cddc247ea2 // indirect
2020-04-27 11:54:24 +00:00
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
golang.org/x/sys v0.0.0-20200116001909-b77594299b42
2020-03-04 10:25:14 +00:00
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
k8s.io/api v0.17.3
k8s.io/apiextensions-apiserver v0.17.3
k8s.io/apimachinery v0.17.3
k8s.io/client-go v12.0.0+incompatible
k8s.io/klog v1.0.0
2019-05-07 08:10:23 +00:00
)