-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
94 lines (90 loc) · 4.04 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
module github.com/bitxeno/atvloadly
go 1.18
require (
github.com/artdarek/go-unzip v1.0.1-0.20210323073738-f9883ad8bd15
github.com/creasty/defaults v1.5.2
github.com/electricbubble/gidevice v0.6.2
github.com/fatih/color v1.9.0
github.com/ggwhite/go-masker/v2 v2.1.0
github.com/glebarez/sqlite v1.11.0
github.com/go-errors/errors v1.5.1
github.com/go-resty/resty/v2 v2.6.0
github.com/godbus/dbus/v5 v5.0.4
github.com/gofiber/contrib/websocket v1.0.0
github.com/gofiber/fiber/v2 v2.52.5
github.com/gookit/event v1.1.2
github.com/grandcat/zeroconf v1.0.0
github.com/holoplot/go-avahi v1.0.1
github.com/iineva/CgbiPngFix v0.0.0-20210523041253-b8869b346914
github.com/iineva/bom v0.0.0-20210605043415-7d45ba1bcca3
github.com/iineva/ipa-server v0.0.0-20210613102156-5a07a87df9a8
github.com/json-iterator/go v1.1.12
github.com/knadh/koanf v1.5.0
github.com/mitchellh/go-ps v1.0.0
github.com/nicksnyder/go-i18n/v2 v2.4.0
github.com/nikoksr/notify v0.41.0
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.1
github.com/rs/zerolog v1.29.1
github.com/runletapp/go-console v0.0.0-20211204140000-27323a28410a
github.com/silenceper/wechat/v2 v2.1.5
github.com/urfave/cli/v2 v2.3.0
golang.org/x/text v0.16.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gorm.io/gorm v1.25.7
howett.net/plist v1.0.0
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/blacktop/lzfse-cgo v1.1.19 // indirect
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/creack/pty v1.1.17 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fasthttp/websocket v1.5.3 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/glebarez/go-sqlite v1.21.2 // indirect
github.com/go-redis/redis/v8 v8.11.6-0.20220405070650-99c79f7041fc // indirect
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/iamacarpet/go-winpty v1.0.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/miekg/dns v1.1.41 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/satori/go.uuid v1.2.0 // indirect
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.55.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.22.5 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/sqlite v1.23.1 // indirect
)
replace github.com/iineva/bom v0.0.0-20210605043415-7d45ba1bcca3 => github.com/bitxeno/bom v0.0.0-20230705034132-b3d31612b8ac