From 9fd9f4170fe04f375622ed6c6d32ac847bf006b4 Mon Sep 17 00:00:00 2001 From: Brian Downs Date: Sun, 26 Feb 2023 20:25:34 -0700 Subject: [PATCH] update go.mod Signed-off-by: Brian Downs --- go.mod | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 5d2ea4a..c0965f9 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,14 @@ module github.com/briandowns/spinner -go 1.14 +go 1.17 require ( github.com/fatih/color v1.7.0 - github.com/mattn/go-colorable v0.1.2 // indirect github.com/mattn/go-isatty v0.0.8 golang.org/x/term v0.1.0 ) + +require ( + github.com/mattn/go-colorable v0.1.2 // indirect + golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect +)