-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 723 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 723 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
module github.com/microhod/adventofcode
go 1.25.4
require (
github.com/JohannesKaufmann/html-to-markdown v1.6.0
github.com/PuerkitoBio/goquery v1.11.0
github.com/agnivade/levenshtein v1.1.1
github.com/deckarep/golang-set v1.7.1
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/moul/sapin v1.1.0
golang.org/x/exp v0.0.0-20251125195548-87e1e737ad39
golang.org/x/sync v0.18.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/smartystreets/goconvey v1.7.2 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.38.0 // indirect
)