-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (20 loc) · 711 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
module github.com/friedemannf/advent_of_code
go 1.23
require (
github.com/brunoga/deep v1.2.4
github.com/fatih/color v1.18.0
github.com/schollz/progressbar/v3 v3.17.1
github.com/stretchr/testify v1.10.0
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)