Skip to content

Commit

Permalink
go1.19 is new minimum because of viper dep
Browse files Browse the repository at this point in the history
mainly this: spf13/viper#1627
  • Loading branch information
spezifisch committed Oct 26, 2023
1 parent 6e958e8 commit fa9dfdb
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 1,583 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ["1.16", "1.17", "1.18", "1.19", "1.20", "1.21"]
go: ["1.19", "1.20", "1.21"]

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ A terminal client for *sonic music servers. Inspired by ncmpcpp.

Go build dependencies

* Go 1.16+
* Go 1.19+
* [tview](https://github.com/rivo/tview)
* [go-mpv](https://github.com/yourok/go-mpv/mpv)

Expand Down
29 changes: 25 additions & 4 deletions go.mod
@@ -1,16 +1,37 @@
module github.com/wildeyedskies/stmp

go 1.15
go 1.19

require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gdamore/tcell/v2 v2.6.0
github.com/godbus/dbus/v5 v5.1.0
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/tview v0.0.0-20231024211518-8b7bcf9883df
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/viper v1.17.0
github.com/wildeyedskies/go-mpv v0.0.0-20221204042335-e8961dc66756
)

require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/sagikazarmark/locafero v0.3.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/cast v1.5.1 // 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/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit fa9dfdb

Please sign in to comment.