diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-03-08 16:59:14 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-04-07 17:02:42 +0200 |
commit | 5dc2ff003106f0ced38caadb06033f24c792f9b9 (patch) | |
tree | f6fcd8e4daa1a2ac63d8ee013cc7beb385281176 /go.mod | |
parent | f001cf950bb91384f163bf8650c5d24f77c940f9 (diff) |
Use go module as dependency tool instead of glidehalibut_7.99.3halibut_7.99.2halibut_7.99.1halibut/7.99.3halibut/7.99.2halibut/7.99.17.99.37.99.27.99.1
Get ride of glide tool (marked as obsolete) and go module instead to
populate dependency packages.
See also: https://github.com/golang/go/wiki/Modules
Bug-AGL: SPEC-2289
Change-Id: I8f459a9f80f501c2b6019566eaa3db3a9b986396
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -0,0 +1,43 @@ +module gerrit.automotivelinux.org/gerrit/src/xds/xds-server.git + +go 1.12 + +require ( + gerrit.automotivelinux.org/gerrit/src/xds/xds-common.git v0.0.0-20190406234238-e8490c00f84f + github.com/Sirupsen/logrus v0.11.5 + github.com/bkaradzic/go-lz4 v0.0.0-20160924222819-7224d8d8f27e + github.com/calmh/du v1.0.1 + github.com/calmh/luhn v1.1.0 + github.com/calmh/xdr v1.1.0 + github.com/codegangsta/cli v1.20.0 + github.com/franciscocpg/reflectme v0.0.0-20171108165504-f06ae3cfcd08 + github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 + github.com/gin-contrib/static v0.0.0-20190301062546-ed515893e96b + github.com/gin-gonic/gin v1.3.0 + github.com/gogo/protobuf v0.0.0-20170606144316-efccd33a0c20 + github.com/golang/protobuf v1.3.1 + github.com/googollee/go-engine.io v1.0.1 + github.com/googollee/go-socket.io v1.0.1 + github.com/gorilla/websocket v1.4.0 + github.com/json-iterator/go v1.1.5 + github.com/kardianos/osext v0.0.0-20170309185600-9d302b58e975 + github.com/kr/pty v1.1.3 + github.com/mattn/go-isatty v0.0.7 + github.com/minio/sha256-simd v0.0.0-20170404222936-6124d070eb4e + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd + github.com/modern-go/reflect2 v1.0.1 + github.com/petermattis/goid v0.0.0-20161201195544-caab6446a35a + github.com/sasha-s/go-deadlock v0.0.0-20161201235124-341000892f3d + github.com/satori/go.uuid v1.2.0 + github.com/sebd71/go-socket.io-client v0.0.0-20171005141929-46defcb47f5c + github.com/stretchr/testify v1.3.0 + github.com/syncthing/syncthing v0.14.38 + github.com/ugorji/go v1.1.2 + github.com/zhouhui8915/engine.io-go v0.0.0-20150910083302-02ea08f0971f // indirect + golang.org/x/net v0.0.0-20190301231341-16b79f2e4e95 + golang.org/x/sys v0.0.0-20190308023053-584f3b12f43e + golang.org/x/text v0.0.0-20170401064109-f4b4367115ec + google.golang.org/genproto v0.0.0-20180831171423-11092d34479b // indirect + gopkg.in/go-playground/validator.v8 v8.18.2 + gopkg.in/yaml.v2 v2.2.2 +) |