-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
29 lines (26 loc) · 976 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
25
26
27
28
29
module github.com/nao1215/mimixbox
go 1.18
require (
github.com/cheggaaa/pb/v3 v3.1.5
github.com/fogleman/gg v1.3.0
github.com/jessevdk/go-flags v1.6.1
github.com/nsf/termbox-go v1.1.1
github.com/stretchr/testify v1.10.0
golang.org/x/term v0.26.0
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/image v0.0.0-20211028202545-6944b10bf410 // indirect
golang.org/x/sys v0.27.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)