-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
37 lines (33 loc) · 1.3 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
module github.com/DENICeG/go-rriclient
go 1.23.2
require (
github.com/DENICeG/go-console/v2 v2.0.9
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/manifoldco/promptui v0.9.0
github.com/sbreitf1/go-jcrypt v0.1.0
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.32.0
)
require github.com/dlclark/regexp2 v1.11.4 // indirect
require (
github.com/alecthomas/chroma/v2 v2.14.0
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
github.com/beevik/etree v1.4.1
github.com/chzyer/readline v1.5.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell v1.4.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/crypto v0.30.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)