-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
35 lines (30 loc) · 1.27 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
module github.com/codecrafters-io/shell-tester
go 1.22
toolchain go1.22.3
require (
github.com/charmbracelet/x/vt v0.0.0-20241212203040-20117e9c8cd5
github.com/codecrafters-io/tester-utils v0.2.40
github.com/creack/pty v1.1.23
github.com/fatih/color v1.18.0
github.com/gookit/color v1.5.4
go.chromium.org/luci v0.0.0-20240530183920-783ca64715fa
)
// Use this to test the local version of tester-utils
// replace github.com/codecrafters-io/tester-utils v0.2.22 => /Users/rohitpaulk/experiments/codecrafters/tester-utils
require (
github.com/charmbracelet/x/ansi v0.6.0 // indirect
github.com/charmbracelet/x/wcwidth v0.0.0-20241011142426-46044092ad91 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)