-
Notifications
You must be signed in to change notification settings - Fork 19
/
go.mod
44 lines (41 loc) · 1.56 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/devgianlu/go-librespot
go 1.22.2
require (
github.com/cenkalti/backoff/v4 v4.2.1
github.com/devgianlu/shannon v0.0.0-20230613115856-82ec90b7fa7e
github.com/gofrs/flock v0.12.1
github.com/grandcat/zeroconf v1.0.0
github.com/jfreymuth/pulse v0.1.2-0.20241102120944-4ffb35054b53
github.com/knadh/koanf/parsers/yaml v0.1.0
github.com/knadh/koanf/providers/confmap v0.1.0
github.com/knadh/koanf/providers/file v1.1.0
github.com/knadh/koanf/providers/posflag v0.1.0
github.com/knadh/koanf/v2 v2.1.1
github.com/rs/cors v1.11.1
github.com/sirupsen/logrus v1.9.3
github.com/spf13/pflag v1.0.5
github.com/xlab/vorbis-go v0.0.0-20210911202351-b5b85f1ec645
golang.org/x/crypto v0.24.0
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
golang.org/x/net v0.26.0
golang.org/x/oauth2 v0.21.0
google.golang.org/protobuf v1.30.0
nhooyr.io/websocket v1.8.7
)
require (
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
github.com/klauspost/compress v1.10.3 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/miekg/dns v1.1.54 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/tools v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)