-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
30 lines (27 loc) · 1.03 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
module github.com/obalunenko/advent-of-code
go 1.23
require (
github.com/briandowns/spinner v1.23.2
github.com/manifoldco/promptui v0.9.0
github.com/obalunenko/getenv v1.14.0
github.com/obalunenko/logger v1.2.0
github.com/obalunenko/version v1.2.0
github.com/savioxavier/termlink v1.4.2
github.com/stretchr/testify v1.10.0
github.com/urfave/cli/v2 v2.27.5
)
require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)