mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-08-05 20:04:06 +02:00
0827024e75
Replaces the earlier v0.21.0 pin. The modernize analyzer (gopls v0.22+) requires Go 1.26, which the project doesn't target yet — and bumping the module to 1.26 isn't viable because the current golangci-lint release is built with Go 1.25 and refuses to lint a newer target. Instead, let the modernize task fetch the toolchain it needs on demand via GOTOOLCHAIN=auto (setup-go pins GOTOOLCHAIN=local in CI), so we stay on the latest analyzer without touching the module's Go version. Also bump golang.org/x/image v0.34.0 -> v0.42.0 via `go get -u ./...`.
17 lines
301 B
Modula-2
17 lines
301 B
Modula-2
module github.com/kjanat/articulate-parser
|
|
|
|
go 1.25.0
|
|
|
|
toolchain go1.25.5
|
|
|
|
require (
|
|
github.com/fumiama/go-docx v0.0.0-20250506085032-0c30fd09304b
|
|
golang.org/x/net v0.56.0
|
|
golang.org/x/text v0.38.0
|
|
)
|
|
|
|
require (
|
|
github.com/fumiama/imgsz v0.0.4 // indirect
|
|
golang.org/x/image v0.42.0 // indirect
|
|
)
|