Add xpath dependencies

This commit is contained in:
2025-03-24 15:44:48 +01:00
parent bdcf096fdd
commit 84e0a8bed6
2 changed files with 82 additions and 5 deletions

12
go.mod
View File

@@ -2,9 +2,15 @@ module modify
go 1.24.1
require github.com/Knetic/govaluate v3.0.0+incompatible
require (
github.com/antchfx/xmlquery v1.4.4
github.com/bmatcuk/doublestar/v4 v4.8.1
github.com/yuin/gopher-lua v1.1.1
)
require (
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
github.com/yuin/gopher-lua v1.1.1 // indirect
github.com/antchfx/xpath v1.3.3 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/text v0.21.0 // indirect
)