-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (25 loc) · 891 Bytes
/
Copy pathgo.mod
File metadata and controls
29 lines (25 loc) · 891 Bytes
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
module github.com/obalunenko/advent-of-code
go 1.24
toolchain go1.24.0
require (
github.com/briandowns/spinner v1.23.2
github.com/manifoldco/promptui v0.9.0
github.com/obalunenko/getenv v1.14.1
github.com/obalunenko/logger v1.2.0
github.com/obalunenko/version v1.3.1
github.com/savioxavier/termlink v1.4.3
github.com/stretchr/testify v1.11.1
github.com/urfave/cli/v3 v3.6.1
)
require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // 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
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // 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
)