forked from ysugimoto/falco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
69 lines (63 loc) · 2.23 KB
/
Copy pathgo.mod
File metadata and controls
69 lines (63 loc) · 2.23 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/ysugimoto/falco/v2
go 1.25.5
require (
github.com/avct/uasurfer v0.0.0-20191028135549-26b5daa857f1
github.com/fatih/color v1.12.0
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/ysugimoto/twist v0.10.2
golang.org/x/net v0.38.0
golang.org/x/sync v0.12.0
golang.org/x/sys v0.31.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/go-yaml/yaml v2.1.0+incompatible
github.com/gobwas/glob v0.2.3
github.com/k0kubun/pp v3.0.1+incompatible
github.com/olekukonko/tablewriter v0.0.5
github.com/pierrec/xxHash v0.1.5
github.com/pion/dtls/v2 v2.2.12
github.com/rivo/tview v0.0.0-20230814110005-ccc2c8119703
go.elara.ws/pcre v0.0.0-20230805032557-4ce849193f64
gopkg.in/yaml.v3 v3.0.1
)
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.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
modernc.org/libc v1.17.0 // indirect
modernc.org/mathutil v1.4.1 // indirect
modernc.org/memory v1.2.0 // indirect
)
replace go.elara.ws/pcre => github.com/dip-proto/go-pcre v0.0.0-20260204122309-dcbff9cb6240
// These versions were published under the module path
// github.com/ysugimoto/falco without the required /v2 suffix and are
// not importable. Use the next published release or later.
retract (
v2.0.0
v2.0.1
v2.1.0
v2.2.0
v2.3.0
)