-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 835 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 835 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 main
go 1.25.0
require (
github.com/ChrisTrenkamp/goxpath v0.0.0-20190607011252-c5096ec8773d
github.com/antchfx/htmlquery v1.2.2
github.com/antchfx/jsonquery v1.1.2
github.com/antchfx/xmlquery v1.2.3
github.com/antchfx/xpath v1.3.6
github.com/go-xmlpath/xmlpath v0.0.0-20150820204837-860cbeca3ebc
github.com/jbowtie/gokogiri v0.0.0-20190301021639-37f655d3078f
github.com/lestrrat-go/libxml2 v0.0.0-20231124114421-99c71026c2f5
github.com/santhosh-tekuri/xpathparser v1.0.0
)
require (
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/text v0.35.0 // indirect
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 // indirect
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc // indirect
)