Skip to content

Commit

Permalink
chore: Bump go version and deps (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmacias95 authored Aug 8, 2024
1 parent 2068b95 commit 4ece259
Show file tree
Hide file tree
Showing 5 changed files with 138 additions and 349 deletions.
2 changes: 1 addition & 1 deletion cmd/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/VirusTotal/vt-cli/utils"
vt "github.com/VirusTotal/vt-go"
"github.com/briandowns/spinner"
"github.com/cavaliercoder/grab"
grab "github.com/cavaliergopher/grab/v3"
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion cmd/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

"github.com/VirusTotal/vt-cli/utils"
vt "github.com/VirusTotal/vt-go"
"github.com/cavaliercoder/grab"
grab "github.com/cavaliergopher/grab/v3"
"github.com/fatih/color"

"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion cmd/monitorpartner.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/VirusTotal/vt-cli/utils"
vt "github.com/VirusTotal/vt-go"
"github.com/cavaliercoder/grab"
grab "github.com/cavaliergopher/grab/v3"
"github.com/fatih/color"

"github.com/spf13/cobra"
Expand Down
58 changes: 42 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,27 +1,53 @@
module github.com/VirusTotal/vt-cli

go 1.14
go 1.22.0

require (
github.com/VirusTotal/vt-go v0.0.0-20230717142150-8431ff2cc00f
github.com/briandowns/spinner v1.7.0
github.com/cavaliercoder/grab v2.0.0+incompatible
github.com/dustin/go-humanize v1.0.0
github.com/fatih/color v1.7.0
github.com/VirusTotal/vt-go v1.0.1
github.com/briandowns/spinner v1.23.1
github.com/cavaliergopher/grab/v3 v3.0.1
github.com/dustin/go-humanize v1.0.1
github.com/fatih/color v1.17.0
github.com/gobwas/glob v0.2.3
github.com/gosuri/uitable v0.0.4
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mattn/go-runewidth v0.0.5 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/plusvic/go-ansi v0.0.0-20180516115420-9879244c4340
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
golang.org/x/sync v0.0.0-20190423024810-112230192c58
golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2 // indirect
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
golang.org/x/sync v0.6.0
)

require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/thedevsaddam/gojsonq/v2 v2.5.2 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 4ece259

Please sign in to comment.