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.2
|
|
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-20220926161630-eccd6366d1be
|
|
gopkg.in/ini.v1 v1.67.0
|
|
modernc.org/sqlite v1.19.1
|
|
)
|
|
|
|
require (
|
|
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
|
|
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-20221002022538-bcab6841153b // indirect
|
|
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.12 // indirect
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
modernc.org/cc/v3 v3.40.0 // indirect
|
|
modernc.org/ccgo/v3 v3.16.9 // indirect
|
|
modernc.org/libc v1.20.0 // 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
|
|
)
|