From 19c13b4cc697410b586b243123522c43e68e2f0c Mon Sep 17 00:00:00 2001 From: Yuxuan 'fishy' Wang Date: Wed, 12 Oct 2022 14:13:15 -0700 Subject: THRIFT-5650: Implement UUID in Go library Client: go This is only the library part of THRIFT-5650. I still have some open questions for the compiler part so that will be done later. While I'm here, also made some changes to go CI process: * Update ubuntu-bionic to use go 1.18 for travis * Update ubuntu-jammy to use the latest go 1.19.x for travis * Run both go 1.18 and 1.19 for github actions * Also run test/go tests for github actions --- go.mod | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 2d3d1c662..dc1e4a207 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,11 @@ module github.com/apache/thrift go 1.18 -require github.com/golang/mock v1.5.0 +require github.com/golang/mock v1.6.0 + +require ( + golang.org/x/mod v0.4.2 // indirect + golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect + golang.org/x/tools v0.1.1 // indirect + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect +) -- cgit v1.2.1