mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-07 02:42:50 +08:00
62 lines
2.5 KiB
Modula-2
62 lines
2.5 KiB
Modula-2
module AynaLivePlayer
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
fyne.io/fyne/v2 v2.2.4
|
|
github.com/XiaoMengXinX/Music163Api-Go v0.1.29
|
|
github.com/antonfisher/nested-logrus-formatter v1.3.1
|
|
github.com/aynakeya/blivedm v0.1.6
|
|
github.com/aynakeya/go-mpv v0.0.6
|
|
github.com/dhowden/tag v0.0.0-20220618230019-adf36e896086
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/jinzhu/copier v0.3.5
|
|
github.com/magiconair/properties v1.8.5
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
github.com/spf13/cast v1.5.0
|
|
github.com/stretchr/testify v1.8.0
|
|
github.com/tidwall/gjson v1.14.3
|
|
github.com/virtuald/go-paniclog v0.0.0-20190812204905-43a7fa316459
|
|
golang.org/x/exp v0.0.0-20221217163422-3c43f8badb15
|
|
golang.org/x/sys v0.1.0
|
|
gopkg.in/ini.v1 v1.66.4
|
|
)
|
|
|
|
require (
|
|
fyne.io/systray v1.10.1-0.20230207085535-4a244dbb9d03 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fredbi/uri v0.1.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
|
github.com/fyne-io/gl-js v0.0.0-20220119005834-d2da28d9ccfe // indirect
|
|
github.com/fyne-io/glfw-js v0.0.0-20220120001248-ee7290d23504 // indirect
|
|
github.com/fyne-io/image v0.0.0-20220602074514-4956b0afb3d2 // indirect
|
|
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect
|
|
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/goki/freetype v0.0.0-20220119013949-7a161fd3728c // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/gopherjs/gopherjs v1.17.2 // indirect
|
|
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/srwiley/oksvg v0.0.0-20220731023508-a61f04f16b76 // indirect
|
|
github.com/srwiley/rasterx v0.0.0-20210519020934-456a8d69b780 // indirect
|
|
github.com/tevino/abool v1.2.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/yuin/goldmark v1.4.13 // indirect
|
|
golang.org/x/image v0.0.0-20220601225756-64ec528b34cd // indirect
|
|
golang.org/x/mobile v0.0.0-20211207041440-4e6c2922fdee // indirect
|
|
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
honnef.co/go/js/dom v0.0.0-20210725211120-f030747120f2 // indirect
|
|
)
|
|
|
|
//replace (
|
|
// github.com/aynakeya/blivedm => D:\Repository\blivedm
|
|
// github.com/aynakeya/go-mpv => D:\Repository\go-mpv
|
|
//)
|