-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
48 lines (45 loc) · 1.92 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module github.com/jvatic/audible-downloader
go 1.21
require (
fyne.io/fyne v1.4.3
github.com/antchfx/htmlquery v1.3.0
github.com/antchfx/xpath v1.2.5
github.com/dhowden/tag v0.0.0-20230630033851-978a0926ee25
github.com/gcottom/audiometa v1.2.5
github.com/mitchellh/go-homedir v1.1.0
github.com/sirupsen/logrus v1.9.3
github.com/vbauerster/mpb/v5 v5.4.0
golang.org/x/crypto v0.16.0
golang.org/x/net v0.19.0
)
require (
github.com/Sorrow446/go-mp4tag v0.0.0-20220705231847-a6f24ef004f0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/abema/go-mp4 v1.1.1 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/bogem/id3v2 v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fyne-io/mobile v0.1.2 // indirect
github.com/go-flac/flacpicture v0.3.0 // indirect
github.com/go-flac/flacvorbis v0.2.0 // indirect
github.com/go-flac/go-flac v1.0.0 // indirect
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20231124074035-2de0cf0c80af // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/goki/freetype v1.0.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/sunfish-shogi/bufseekio v0.1.0 // indirect
golang.org/x/image v0.14.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)