-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
76 lines (72 loc) · 3.27 KB
/
go.mod
File metadata and controls
76 lines (72 loc) · 3.27 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module cogentcore.org/lab
go 1.25.6
// after go mod tidy, you need to run:
// go get google.golang.org/genproto@latest
// otherwise there will be an ambiguous import warning when building baremetal
// https://github.com/googleapis/go-genproto/issues/1015
require (
cogentcore.org/core v0.3.23
github.com/cogentcore/readline v0.1.3
github.com/cogentcore/yaegi v0.0.0-20260116172027-700fbf8949f3
github.com/mitchellh/go-homedir v1.1.0
github.com/nsf/termbox-go v1.1.1
github.com/stretchr/testify v1.11.1
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
golang.org/x/tools v0.43.0
gonum.org/v1/gonum v0.17.0
google.golang.org/grpc v1.80.0
google.golang.org/protobuf v1.36.11
)
require (
codeberg.org/go-pdf/fpdf v0.11.0 // indirect
github.com/Bios-Marcel/wastebasket/v2 v2.0.3 // indirect
github.com/Masterminds/vcs v1.13.3 // indirect
github.com/adrg/strutil v0.3.1 // indirect
github.com/alecthomas/chroma/v2 v2.23.0 // indirect
github.com/anthonynsimon/bild v0.14.0 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bramvdbogaerde/go-scp v1.6.0 // indirect
github.com/chewxy/math32 v1.11.1 // indirect
github.com/cogentcore/webgpu v0.23.1-0.20260410073005-a2ae7d757168 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/ericchiang/css v1.4.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-fonts/latin-modern v0.3.3 // indirect
github.com/go-gl/glfw/v3.4/glfw v0.1.0-pre.1 // indirect
github.com/go-text/typesetting v0.3.5-0.20260418130854-c41d02a44bec // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/gomarkdown/markdown v0.0.0-20250810172220-2e2c11897d1a // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/h2non/filetype v1.1.3 // indirect
github.com/hack-pad/go-indexeddb v0.3.2 // indirect
github.com/hack-pad/hackpadfs v0.2.4 // indirect
github.com/hack-pad/safejs v0.1.1 // indirect
github.com/jeandeaual/go-locale v0.0.0-20250612000132-0ef82f21eade // indirect
github.com/jinzhu/copier v0.4.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mattn/go-shellwords v1.0.12 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/tdewolff/parse/v2 v2.8.5 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/image v0.39.0 // indirect
golang.org/x/mod v0.34.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.36.0 // indirect
google.golang.org/genproto v0.0.0-20260414002931-afd174a4e478 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260406210006-6f92a3bedf2d // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/knuth v0.5.4 // indirect
modernc.org/token v1.1.0 // indirect
star-tex.org/x/tex v0.7.1 // indirect
)