From 45641a4dd7a9030c3d4a15e54c7273939aca788c Mon Sep 17 00:00:00 2001 From: Antoine Mercadal Date: Thu, 26 Jan 2023 15:33:11 -0800 Subject: [PATCH] bump minimal go version and run go mod tidy --- go.mod | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index edd8053..4f53574 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,14 @@ module go.aporeto.io/wsc -go 1.12 +go 1.18 require ( github.com/gorilla/websocket v1.5.0 github.com/smartystreets/goconvey v1.7.2 ) + +require ( + github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect + github.com/jtolds/gls v4.20.0+incompatible // indirect + github.com/smartystreets/assertions v1.2.0 // indirect +)