This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
80 lines (75 loc) · 3.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module github.com/LedFx/ledfx
go 1.18
require (
fyne.io/systray v1.10.0
github.com/LedFx/aubio-go v0.0.0-20220831151230-c3840aaa4a8f
github.com/antonfisher/nested-logrus-formatter v1.3.1
github.com/carterpeel/abool v1.2.1-0.20220225054344-4f95bb28612b
github.com/carterpeel/ffmpeg-go v0.4.1-0.20220226201032-e6786be815f4
github.com/carterpeel/go.alac v0.0.0-20220120210858-abcf099555b4
github.com/fatih/color v1.13.0
github.com/gorilla/websocket v1.5.0
github.com/grandcat/zeroconf v1.0.0
github.com/grantmd/go-airplay v0.0.0-20150101054745-99b46766924c
github.com/mazznoer/colorgrad v0.8.1
github.com/mitchellh/mapstructure v1.5.0
github.com/muesli/gamut v0.3.0
github.com/ojrac/opensimplex-go v1.0.2
github.com/ritchie46/GOPHY v0.0.0-20170315173114-9b8a7f05cfa1
github.com/spf13/pflag v1.0.5
go.uber.org/atomic v1.9.0
golang.org/x/image v0.0.0-20220601225756-64ec528b34cd
golang.org/x/text v0.3.8-0.20211105212822-18b340fc7af2
)
require (
github.com/aws/aws-sdk-go v1.44.28 // indirect
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/creack/goselect v0.1.2 // indirect
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mazznoer/csscolorparser v0.1.2 // indirect
github.com/miekg/dns v1.1.49 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 // indirect
github.com/muesli/kmeans v0.3.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.8.1-0.20211023094830-115ce09fd6b4 // indirect
github.com/tevino/abool v1.2.0 // indirect
github.com/u2takey/go-utils v0.3.1 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
golang.org/x/tools v0.1.11-0.20220413170336-afc6aad76eb1 // indirect
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/dop251/goja v0.0.0-20220516123900-4418d4575a41 // indirect
github.com/kkdai/youtube/v2 v2.7.15
github.com/schollz/progressbar/v3 v3.8.6
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
)
require (
github.com/Hundemeier/go-sacn/sacn v0.0.0-20191003133642-c4680a71fa22
github.com/LedFx/portaudio v0.0.0-20220904153216-3555838c5db4
github.com/creasty/defaults v1.6.0
github.com/go-playground/validator/v10 v10.11.0
github.com/maghul/alac v0.0.0-20161106215514-129591bceef4
github.com/maghul/go.alac v0.0.0-20161106215514-129591bceef4 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/sirupsen/logrus v1.8.1
go.bug.st/serial v1.3.5
)