-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
40 lines (34 loc) · 1.05 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
38
39
40
module github.com/EliCDavis/polyform
go 1.21.0
require (
github.com/EliCDavis/vector v1.8.0
github.com/schollz/progressbar/v3 v3.14.4
github.com/stretchr/testify v1.10.0
)
require (
github.com/EliCDavis/jbtf v0.2.0
github.com/EliCDavis/sfm v1.2.0
github.com/gorilla/websocket v1.5.3
)
require (
github.com/EliCDavis/bitlib v1.2.0
github.com/EliCDavis/iter v1.0.2
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/term v0.21.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/urfave/cli/v2 v2.27.2
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/fogleman/gg v1.3.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/image v0.18.0
)