-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 667 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/sbreitf1/go-console
go 1.23.4
require (
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
github.com/gdamore/tcell v1.4.0
github.com/nsf/termbox-go v1.1.1
github.com/stretchr/testify v1.10.0
golang.org/x/sys v0.28.0
golang.org/x/term v0.27.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)