-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
37 lines (32 loc) · 975 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
30
31
32
33
34
35
36
37
module github.com/marcuscaisey/lox
go 1.23
require (
github.com/chzyer/readline v1.5.1
github.com/marcuscaisey/go-sumtype v0.0.0-20241208122212-4c96c503b8ce
github.com/mattn/go-runewidth v0.0.15
golang.org/x/term v0.18.0
)
// Tools
require (
golang.org/x/tools v0.23.0
gotest.tools/gotestsum v1.12.0
)
// Test-only
require (
github.com/google/go-cmp v0.6.0
github.com/hexops/gotextdiff v1.0.3
)
require (
github.com/bitfield/gotestdox v0.2.2 // indirect
github.com/dnephin/pflag v1.0.7 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/mod v0.19.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.14.0 // indirect
)