From 247bb7c2db5f0d48178398599348249bf886ebbc Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Fri, 8 Mar 2019 21:19:04 +0100 Subject: Use go module as dependency tool instead of glide 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: I9c16bb0759c34cab48b5bd03fc29993c38608c6e Signed-off-by: Sebastien Douheret --- go.mod | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b081412 --- /dev/null +++ b/go.mod @@ -0,0 +1,25 @@ +module gerrit.automotivelinux.org/gerrit/src/xds/xds-agent.git + +go 1.12 + +require ( + gerrit.automotivelinux.org/gerrit/src/xds/xds-common.git v0.0.0-20190406234238-e8490c00f84f + gerrit.automotivelinux.org/gerrit/src/xds/xds-server.git v0.0.0-20190407170242-5dc2ff003106 + github.com/Sirupsen/logrus v0.11.5 + github.com/bkaradzic/go-lz4 v1.0.0 // indirect + github.com/calmh/luhn v2.0.0+incompatible // indirect + github.com/franciscocpg/reflectme v0.0.0-20171108165504-f06ae3cfcd08 + github.com/gin-contrib/static v0.0.0-20190301062546-ed515893e96b + github.com/gin-gonic/gin v1.3.0 + github.com/gogo/protobuf v1.2.1 // indirect + github.com/googollee/go-socket.io v1.0.1 + github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect + github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16 // indirect + github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect + github.com/sasha-s/go-deadlock v0.2.0 // indirect + github.com/satori/go.uuid v1.2.0 + github.com/sebd71/go-socket.io-client v0.0.0-20171005141929-46defcb47f5c + github.com/syncthing/syncthing v0.14.38 + github.com/urfave/cli v1.20.0 + golang.org/x/text v0.3.0 // indirect +) -- cgit 1.2.3-korg