mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
39 lines
1.4 KiB
Modula-2
39 lines
1.4 KiB
Modula-2
module rdio-scanner/server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/dhowden/tag v0.0.0-20201120070457-d52dcb253c63
|
|
github.com/fsnotify/fsnotify v1.5.1
|
|
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-20220321153916-2c7772ba3064
|
|
gopkg.in/ini.v1 v1.66.4
|
|
modernc.org/sqlite v1.15.4
|
|
)
|
|
|
|
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.20220106191415-9b9b3d81d5e3 // indirect
|
|
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
|
|
golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.10 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
modernc.org/cc/v3 v3.35.24 // indirect
|
|
modernc.org/ccgo/v3 v3.15.18 // indirect
|
|
modernc.org/libc v1.14.12 // indirect
|
|
modernc.org/mathutil v1.4.1 // indirect
|
|
modernc.org/memory v1.0.7 // indirect
|
|
modernc.org/opt v0.1.3 // indirect
|
|
modernc.org/strutil v1.1.1 // indirect
|
|
modernc.org/token v1.0.0 // indirect
|
|
)
|