2023 Day 17 Complete

This commit is contained in:
2023-12-17 10:52:08 -06:00
parent a34f05d1af
commit d64a18280f
16 changed files with 517 additions and 131 deletions

8
go.mod
View File

@@ -1,6 +1,6 @@
module git.bullercodeworks.com/brian/adventofcode
go 1.16
go 1.20
require (
github.com/br0xen/termbox-screen v0.0.0-20190712162752-c91f70ac38c6
@@ -8,8 +8,12 @@ require (
github.com/fatih/color v1.7.0
github.com/go-gl/gl v0.0.0-20190320180904-bf2b1f2f34d7
github.com/go-gl/glfw v0.0.0-20191125211704-12ad95a8df72
github.com/nsf/termbox-go v0.0.0-20190817171036-93860e161317
)
require (
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/nsf/termbox-go v0.0.0-20190817171036-93860e161317
golang.org/x/sys v0.0.0-20191008105621-543471e840be // indirect
)