Update dependencies

This commit is contained in:
Philipp Wolfer 2024-09-16 19:02:14 +02:00
parent 7175d3453d
commit 1c1ce224f7
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
2 changed files with 79 additions and 22 deletions

46
go.mod
View file

@ -1,29 +1,31 @@
module go.uploadedlobster.com/scotty
go 1.21
go 1.22.0
toolchain go1.22.2
require (
github.com/Xuanwo/go-locale v1.1.0
github.com/Xuanwo/go-locale v1.1.2
github.com/agnivade/levenshtein v1.1.1
github.com/cli/browser v1.3.0
github.com/delucks/go-subsonic v0.0.0-20220915164742-2744002c4be5
github.com/fatih/color v1.16.0
github.com/delucks/go-subsonic v0.0.0-20240806025900-2a743ec36238
github.com/fatih/color v1.17.0
github.com/glebarez/sqlite v1.11.0
github.com/go-resty/resty/v2 v2.12.0
github.com/go-resty/resty/v2 v2.15.0
github.com/jarcoal/httpmock v1.3.1
github.com/manifoldco/promptui v0.9.0
github.com/pelletier/go-toml/v2 v2.2.1
github.com/pelletier/go-toml/v2 v2.2.3
github.com/shkh/lastfm-go v0.0.0-20191215035245-89a801c244e0
github.com/spf13/cast v1.6.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
github.com/spf13/cast v1.7.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
github.com/vbauerster/mpb/v8 v8.7.3
golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8
golang.org/x/oauth2 v0.19.0
golang.org/x/text v0.14.0
gorm.io/datatypes v1.2.0
gorm.io/gorm v1.25.9
github.com/vbauerster/mpb/v8 v8.8.3
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/oauth2 v0.23.0
golang.org/x/text v0.18.0
gorm.io/datatypes v1.2.2
gorm.io/gorm v1.25.12
)
require (
@ -44,26 +46,26 @@ require (
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.15 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/locafero v0.6.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/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/mysql v1.5.6 // indirect
modernc.org/libc v1.49.3 // indirect
gorm.io/driver/mysql v1.5.7 // indirect
modernc.org/libc v1.60.1 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/sqlite v1.29.6 // indirect
modernc.org/sqlite v1.33.1 // indirect
)