mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
40 lines
1.3 KiB
Modula-2
40 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.6.0
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/golang-jwt/jwt/v4 v4.4.2
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/jackc/pgx/v5 v5.0.4
|
|
github.com/kardianos/service v1.2.2
|
|
golang.org/x/crypto v0.1.0
|
|
gopkg.in/ini.v1 v1.67.0
|
|
modernc.org/sqlite v1.19.3
|
|
)
|
|
|
|
require (
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20220927061507-ef77025ab5aa // indirect
|
|
golang.org/x/mod v0.6.0 // indirect
|
|
golang.org/x/net v0.1.0 // indirect
|
|
golang.org/x/sys v0.1.0 // indirect
|
|
golang.org/x/text v0.4.0 // indirect
|
|
golang.org/x/tools v0.2.0 // indirect
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
modernc.org/cc/v3 v3.40.0 // indirect
|
|
modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8 // indirect
|
|
modernc.org/libc v1.21.4 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.4.0 // indirect
|
|
modernc.org/opt v0.1.3 // indirect
|
|
modernc.org/strutil v1.1.3 // indirect
|
|
modernc.org/token v1.0.1 // indirect
|
|
)
|