-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgo.mod
More file actions
48 lines (40 loc) · 1.24 KB
/
go.mod
File metadata and controls
48 lines (40 loc) · 1.24 KB
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
41
42
43
44
45
46
47
48
module github.com/EliCDavis/polyform
go 1.23.0
toolchain go1.23.4
require (
github.com/EliCDavis/vector v1.12.0
github.com/schollz/progressbar/v3 v3.18.0
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/hack-pad/safejs v0.1.1 // indirect
github.com/nlepage/go-js-promise v1.1.0 // indirect
github.com/nlepage/go-wasm-http-server/v2 v2.2.1 // indirect
)
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.33.0 // indirect
golang.org/x/term v0.32.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.6
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.7 // 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.27.0
)