36 lines
1.1 KiB
Modula-2
36 lines
1.1 KiB
Modula-2
module github.com/marcopiovanello/yt-dlp-web-ui/v3
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
github.com/coreos/go-oidc/v3 v3.15.0
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-chi/cors v1.2.2
|
|
github.com/golang-jwt/jwt/v5 v5.3.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/spf13/viper v1.20.1
|
|
go.etcd.io/bbolt v1.4.3
|
|
golang.org/x/crypto v0.41.0
|
|
golang.org/x/oauth2 v0.30.0
|
|
golang.org/x/sys v0.35.0
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.8.0 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.1.2 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
|
|
github.com/sagikazarmark/locafero v0.7.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.12.0 // indirect
|
|
github.com/spf13/cast v1.7.1 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.9.0 // indirect
|
|
golang.org/x/text v0.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|