aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod30
1 files changed, 24 insertions, 6 deletions
diff --git a/go.mod b/go.mod
index 3a9d2e8..f4f3c78 100644
--- a/go.mod
+++ b/go.mod
@@ -1,17 +1,35 @@
1module git.sixfoisneuf.fr/simon/termsonic 1module git.sixfoisneuf.fr/termsonic
2 2
3go 1.19 3go 1.19
4 4
5require ( 5require (
6 github.com/BurntSushi/toml v1.2.1 // indirect 6 github.com/BurntSushi/toml v1.2.1
7 github.com/delucks/go-subsonic v0.0.0-20220915164742-2744002c4be5 // indirect 7 github.com/delucks/go-subsonic v0.0.0-20220915164742-2744002c4be5
8 github.com/faiface/beep v1.1.0
9 github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
10 github.com/jfbus/httprs v0.0.0-20190827093123-b0af8319bb15
11 github.com/rivo/tview v0.0.0-20221128165837-db36428c92d9
12)
13
14require (
8 github.com/gdamore/encoding v1.0.0 // indirect 15 github.com/gdamore/encoding v1.0.0 // indirect
9 github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1 // indirect 16 github.com/hajimehoshi/go-mp3 v0.3.0 // indirect
17 github.com/hajimehoshi/oto v0.7.1 // indirect
18 github.com/icza/bitio v1.0.0 // indirect
19 github.com/jfreymuth/oggvorbis v1.0.1 // indirect
20 github.com/jfreymuth/vorbis v1.0.0 // indirect
10 github.com/lucasb-eyer/go-colorful v1.2.0 // indirect 21 github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
11 github.com/mattn/go-runewidth v0.0.13 // indirect 22 github.com/mattn/go-runewidth v0.0.13 // indirect
12 github.com/rivo/tview v0.0.0-20221128165837-db36428c92d9 // indirect 23 github.com/mewkiz/flac v1.0.7 // indirect
24 github.com/mewkiz/pkg v0.0.0-20190919212034-518ade7978e2 // indirect
25 github.com/mitchellh/copystructure v1.0.0 // indirect
26 github.com/mitchellh/reflectwalk v1.0.0 // indirect
27 github.com/pkg/errors v0.9.1 // indirect
13 github.com/rivo/uniseg v0.4.2 // indirect 28 github.com/rivo/uniseg v0.4.2 // indirect
14 golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect 29 golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8 // indirect
30 golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 // indirect
31 golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
32 golang.org/x/sys v0.0.0-20220712014510-0a85c31ab51e // indirect
15 golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect 33 golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
16 golang.org/x/text v0.3.7 // indirect 34 golang.org/x/text v0.3.7 // indirect
17) 35)