mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
38 lines
1.3 KiB
Modula-2
38 lines
1.3 KiB
Modula-2
module rdio-scanner/server
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/dhowden/tag v0.0.0-20220618230019-adf36e896086
|
|
github.com/fsnotify/fsnotify v1.5.4
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/golang-jwt/jwt/v4 v4.4.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/kardianos/service v1.2.1
|
|
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
|
|
gopkg.in/ini.v1 v1.66.6
|
|
modernc.org/sqlite v1.17.3
|
|
)
|
|
|
|
require (
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
|
|
golang.org/x/net v0.0.0-20220617184016-355a448f1bc9 // indirect
|
|
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.11 // indirect
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
modernc.org/cc/v3 v3.36.0 // indirect
|
|
modernc.org/ccgo/v3 v3.16.6 // indirect
|
|
modernc.org/libc v1.16.10 // indirect
|
|
modernc.org/mathutil v1.4.1 // indirect
|
|
modernc.org/memory v1.1.1 // indirect
|
|
modernc.org/opt v0.1.3 // indirect
|
|
modernc.org/strutil v1.1.2 // indirect
|
|
modernc.org/token v1.0.0 // indirect
|
|
)
|