mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
39 lines
1.3 KiB
Modula-2
39 lines
1.3 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.2.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/kardianos/service v1.2.0
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
|
|
gopkg.in/ini.v1 v1.66.2
|
|
modernc.org/sqlite v1.14.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.5.1 // indirect
|
|
golang.org/x/net v0.0.0-20220105145211-5b0dc2dfae98 // indirect
|
|
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.8 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
lukechampine.com/uint128 v1.1.1 // indirect
|
|
modernc.org/cc/v3 v3.35.22 // indirect
|
|
modernc.org/ccgo/v3 v3.14.0 // indirect
|
|
modernc.org/libc v1.13.2 // indirect
|
|
modernc.org/mathutil v1.4.1 // indirect
|
|
modernc.org/memory v1.0.5 // indirect
|
|
modernc.org/opt v0.1.1 // indirect
|
|
modernc.org/strutil v1.1.1 // indirect
|
|
modernc.org/token v1.0.0 // indirect
|
|
)
|