Skip to content

Commit edddcac

Browse files
alicodingclaude
andcommitted
chore: tidy go.mod -- promote directly-imported deps out of indirect
internal/adapters/markdown imports JohannesKaufmann/dom and golang.org/x/net/html directly; go mod tidy moves both to the direct require block accordingly. No version changes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ
1 parent 2e3dc14 commit edddcac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/alicoding/mill
33
go 1.25.0
44

55
require (
6+
github.com/JohannesKaufmann/dom v0.3.1
67
github.com/JohannesKaufmann/html-to-markdown/v2 v2.5.2
78
github.com/PuerkitoBio/goquery v1.12.0
89
github.com/andybalholm/cascadia v1.3.4
@@ -19,12 +20,12 @@ require (
1920
github.com/wailsapp/wails/v3 v3.0.0-beta.6
2021
github.com/zalando/go-keyring v0.2.8
2122
golang.design/x/hotkey v0.6.1
23+
golang.org/x/net v0.56.0
2224
golang.org/x/oauth2 v0.36.0
2325
)
2426

2527
require (
2628
git.sr.ht/~jackmordaunt/go-toast/v2 v2.0.3 // indirect
27-
github.com/JohannesKaufmann/dom v0.3.1 // indirect
2829
github.com/adrg/xdg v0.5.3 // indirect
2930
github.com/coder/websocket v1.8.14 // indirect
3031
github.com/danieljoos/wincred v1.2.3 // indirect
@@ -56,7 +57,6 @@ require (
5657
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
5758
golang.org/x/image v0.43.0 // indirect
5859
golang.org/x/mod v0.37.0 // indirect
59-
golang.org/x/net v0.56.0 // indirect
6060
golang.org/x/sync v0.22.0 // indirect
6161
golang.org/x/sys v0.47.0 // indirect
6262
golang.org/x/text v0.40.0 // indirect

0 commit comments

Comments
 (0)