mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
See https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format for expression syntax. `ScanInterval` will still work for the time being. The only situation it does not work is when you want to disable periodic scanning by setting `ScanInterval=0`. If you want to disable it, please set `ScanSchedule=""` Closes #1085
57 lines
2.2 KiB
Modula-2
57 lines
2.2 KiB
Modula-2
module github.com/navidrome/navidrome
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
code.cloudfoundry.org/go-diodes v0.0.0-20190809170250-f77fb823c7ee
|
|
github.com/ClickHouse/clickhouse-go v1.4.3 // indirect
|
|
github.com/Masterminds/squirrel v1.5.0
|
|
github.com/ReneKroon/ttlcache/v2 v2.4.0
|
|
github.com/astaxie/beego v1.12.3
|
|
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
|
|
github.com/cespare/reflex v0.3.0
|
|
github.com/deluan/rest v0.0.0-20210503015435-e7091d44f0ba
|
|
github.com/denisenkom/go-mssqldb v0.9.0 // indirect
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/dhowden/tag v0.0.0-20200412032933-5d76b8eaae27
|
|
github.com/disintegration/imaging v1.6.2
|
|
github.com/djherbis/fscache v0.10.2-0.20201024185917-a0daa9e52747
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/go-chi/chi v1.5.1
|
|
github.com/go-chi/cors v1.1.1
|
|
github.com/go-chi/httprate v0.4.0
|
|
github.com/go-chi/jwtauth v4.0.4+incompatible
|
|
github.com/golangci/golangci-lint v1.39.0
|
|
github.com/google/uuid v1.2.0
|
|
github.com/google/wire v0.5.0
|
|
github.com/kennygrant/sanitize v0.0.0-20170120101633-6a0bfdde8629
|
|
github.com/kr/pretty v0.2.1
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
|
github.com/microcosm-cc/bluemonday v1.0.8
|
|
github.com/mitchellh/mapstructure v1.3.2 // indirect
|
|
github.com/oklog/run v1.1.0
|
|
github.com/onsi/ginkgo v1.16.1
|
|
github.com/onsi/gomega v1.11.0
|
|
github.com/pelletier/go-toml v1.8.0 // indirect
|
|
github.com/pressly/goose v2.7.0+incompatible
|
|
github.com/robfig/cron/v3 v3.0.0 // indirect
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/afero v1.3.1 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/unrolled/secure v1.0.8
|
|
github.com/xrash/smetrics v0.0.0-20200730060457-89a2a8a1fb0b
|
|
github.com/ziutek/mymysql v1.5.4 // indirect
|
|
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8
|
|
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1
|
|
golang.org/x/sys v0.0.0-20210412220455-f1c623a9e750 // indirect
|
|
golang.org/x/tools v0.1.0
|
|
gopkg.in/djherbis/atime.v1 v1.0.0
|
|
gopkg.in/djherbis/stream.v1 v1.3.1
|
|
gopkg.in/ini.v1 v1.57.0 // indirect
|
|
)
|
|
|
|
replace github.com/dhowden/tag => github.com/wader/tag v0.0.0-20200426234345-d072771f6a51
|