From f80d34fc52ec8e90f0ef9df046895082437d1e71 Mon Sep 17 00:00:00 2001 From: bucketcat <91589201+bucketcat@users.noreply.github.com> Date: Tue, 5 Dec 2023 22:05:14 +0000 Subject: [PATCH] Security bumps >go.mod https://github.com/gcla/termshark/issues/157 Make sure to run 'go mod tidy' as this was an in-situ edit of go.mod. --- go.mod | 3 +++ 1 file changed, 3 insertions(+) diff --git a/go.mod b/go.mod index 665e489..1a3c4cd 100644 --- a/go.mod +++ b/go.mod @@ -35,4 +35,7 @@ require ( gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/fsnotify/fsnotify.v1 v1.4.7 gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect + + golang.org/x/net v0.7.0 //https://github.com/gcla/termshark/issues/157 + golang.org/x/text v0.3.8 //https://github.com/gcla/termshark/issues/157 Run 'go mod tidy' after build to fix go.sum )