summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorYuxuan 'fishy' Wang <yuxuan.wang@reddit.com>2022-10-12 14:13:15 -0700
committerYuxuan 'fishy' Wang <fishywang@gmail.com>2022-10-21 10:36:06 -0700
commit19c13b4cc697410b586b243123522c43e68e2f0c (patch)
tree12a77be60cdcc08cb6ec2d8714b4530e9306aff8 /go.mod
parentbaa0daa478c3b16876ccc0778f068fb72932dda6 (diff)
downloadthrift-19c13b4cc697410b586b243123522c43e68e2f0c.tar.gz
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
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod9
1 files changed, 8 insertions, 1 deletions
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
+)