-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (21 loc) · 786 Bytes
/
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
module github.com/harshalranjhani/go-furnace
go 1.21.3
require (
github.com/fatih/color v1.15.0
gopkg.in/cheggaaa/pb.v1 v1.0.28
)
require (
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell v1.4.0 // indirect
github.com/gdamore/tcell/v2 v2.6.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/tview v0.0.0-20231022175332-f7f32ad28104 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.13.0 // indirect
)