-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix dependabot alerts 2, 3, and 4; Update project to Go 1.18
- Loading branch information
Showing
3 changed files
with
31 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,43 @@ | ||
module github.com/twitchdev/twitch-cli | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 | ||
github.com/fatih/color v1.12.0 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/hokaccha/go-prettyjson v0.0.0-20201222001619-a42f9ac2ec8e // indirect | ||
github.com/jmoiron/sqlx v1.3.4 | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/mattn/go-sqlite3 v1.14.7 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 | ||
) | ||
|
||
require ( | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hokaccha/go-prettyjson v0.0.0-20201222001619-a42f9ac2ec8e // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect | ||
github.com/lunixbochs/vtclean v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mattn/go-isatty v0.0.13 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.7 | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.9.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sys v0.0.0-20210611083646-a4fc73990273 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters