-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
go.mod
53 lines (49 loc) · 1.81 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
module github.com/ysugimoto/falco
go 1.21
require (
github.com/avct/uasurfer v0.0.0-20191028135549-26b5daa857f1
github.com/fatih/color v1.12.0
github.com/go-yaml/yaml v2.1.0+incompatible
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.6.0
github.com/kyokomi/emoji v2.2.4+incompatible
github.com/mattn/go-colorable v0.1.8
github.com/pkg/errors v0.9.1
github.com/pquerna/otp v1.4.0
github.com/rs/xid v1.5.0
github.com/stretchr/testify v1.4.0 // indirect
github.com/ysugimoto/twist v0.10.2
golang.org/x/net v0.17.0
golang.org/x/sync v0.3.0
golang.org/x/sys v0.13.0 // indirect
)
require (
github.com/c-bata/go-prompt v0.2.6
github.com/fsnotify/fsnotify v1.7.0
github.com/gdamore/tcell/v2 v2.6.0
github.com/gobwas/glob v0.2.3
github.com/k0kubun/pp v3.0.1+incompatible
github.com/rivo/tview v0.0.0-20230814110005-ccc2c8119703
go.elara.ws/pcre v0.0.0-20230805032557-4ce849193f64
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/google/go-dap v0.12.0
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
modernc.org/libc v1.17.0 // indirect
modernc.org/mathutil v1.4.1 // indirect
modernc.org/memory v1.2.0 // indirect
)