Watch
1
0
Fork
You've already forked advent-of-code
0

2021: Day 1

This commit is contained in:
Jeremy Kaplan 2021-11-30 21:24:53 -08:00
commit cadb8fd03e
3 changed files with 136 additions and 0 deletions

19
2021/go.mod Normal file
View file

@ -0,0 +1,19 @@
module github.com/jdkaplan/advent-of-code
go 1.17
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/tools v0.1.8-0.20211014194737-fc98fb2abd48 // indirect
golang.org/x/tools/gopls v0.7.3 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
honnef.co/go/tools v0.2.0 // indirect
mvdan.cc/gofumpt v0.1.1 // indirect
mvdan.cc/xurls/v2 v2.3.0 // indirect
)