-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
69 lines (51 loc) · 3.46 KB
/
Copy pathgo.mod
File metadata and controls
69 lines (51 loc) · 3.46 KB
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
module github.com/xaionaro-go/screencapture
go 1.25.1
// The original go-yaml is very slow, using the improved version instead
replace github.com/goccy/go-yaml v1.11.3 => github.com/yoelsusanto/go-yaml v0.0.0-20240324162521-2018c1ab915b
replace github.com/andreykaipov/goobs v1.4.1 => github.com/xaionaro-go/goobs v0.0.0-20241103210141-030e538ac440
replace github.com/adrg/libvlc-go/v3 v3.1.5 => github.com/xaionaro-go/libvlc-go/v3 v3.0.0-20241011194409-0fe4e2a9d901
replace fyne.io/fyne/v2 v2.5.5 => github.com/xaionaro-go/fyne/v2 v2.0.0-20250622004601-3a26ee69528a
replace code.cloudfoundry.org/bytefmt => github.com/cloudfoundry/bytefmt v0.0.0-20211005130812-5bb3c17173e5
replace github.com/jfreymuth/pulse v0.1.1 => github.com/xaionaro-go/pulse v0.0.0-20241023202712-7151fa00d4bb
replace github.com/rs/zerolog v1.33.0 => github.com/xaionaro-go/zerolog2belt v0.0.0-20241103164018-a3bc1ea487e5
replace github.com/bluenviron/gortsplib/v4 v4.11.0 => github.com/xaionaro-go/gortsplib/v4 v4.0.0-20241123213409-7279dabb7de6
replace github.com/wlynxg/anet => github.com/BieHDC/anet v0.0.6-0.20241226223613-d47f8b766b3c
replace github.com/nicklaw5/helix/v2 v2.30.1-0.20240715193454-0151ccccf980 => github.com/xaionaro-go/helix/v2 v2.0.0-20250309182928-f54c9d4c8a29
replace github.com/bluenviron/mediacommon/v2 v2.0.1-0.20250324151931-b8ce69d15d3d => github.com/xaionaro-go/mediacommon/v2 v2.0.0-20250420012906-03d6d69ac3b7
replace github.com/joeyak/go-twitch-eventsub/v3 => github.com/xaionaro-go/go-twitch-eventsub/v3 v3.0.0-20250713163657-276e5a5b7adc
replace github.com/scorfly/gokick => github.com/xaionaro-go/gokick v0.0.0-20250713175656-f538d6396851
replace github.com/abhinavxd/youtube-live-chat-downloader/v2 => github.com/xaionaro-go/youtube-live-chat-downloader/v2 v2.0.0-20250726224735-811554015ae8
require (
github.com/facebookincubator/go-belt v0.0.0-20250308011339-62fb7027b11f
github.com/go-gst/go-gst v1.4.0
github.com/godbus/dbus/v5 v5.1.1-0.20230522191255-76236955d466
github.com/xaionaro-go/observability v0.0.0-20251102143534-3aeb2a25e57d
github.com/xaionaro-go/secret v0.0.0-20250111141743-ced12e1082c2
)
require (
github.com/DataDog/gostackparse v0.7.0 // indirect
github.com/go-ng/xatomic v0.0.0-20251124145245-9a7a1838d3aa // indirect
github.com/huandu/go-tls v1.0.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/phuslu/goid v1.0.2 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/stretchr/testify v1.11.1 // indirect
github.com/xaionaro-go/gorex v0.0.0-20241010205749-bcd59d639c4d // indirect
github.com/xaionaro-go/logrustash v0.0.0-20240804141650-d48034780a5f // indirect
github.com/xaionaro-go/object v0.0.0-20241026212449-753ce10ec94c // indirect
github.com/xaionaro-go/spinlock v0.0.0-20200518175509-30e6d1ce68a1 // indirect
github.com/xaionaro-go/unsafetools v0.0.0-20241024014258-a46e1ce3763e // indirect
github.com/xaionaro-go/xsync v0.0.0-20250928140805-f801683b71ba // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/sys v0.38.0 // indirect
lukechampine.com/blake3 v1.4.0 // indirect
)
require (
github.com/go-gst/go-glib v1.4.0 // indirect
github.com/go-ng/slices v0.0.0-20230703171042-6195d35636a2 // indirect
github.com/go-ng/sort v0.0.0-20220617173827-2cc7cd04f7c7 // indirect
github.com/go-ng/xsort v0.0.0-20250330112557-d2ee7f01661c // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-pointer v0.0.1 // indirect
golang.org/x/exp v0.0.0-20250813145105-42675adae3e6 // indirect
)