diff options
author | Martin Fischer <martin@push-f.com> | 2025-04-08 19:25:36 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-04-14 07:04:45 +0200 |
commit | e29d27533725819ec3f6d05a27048d3d2627b53e (patch) | |
tree | 5afba50408b25179edb4ea6445acfe1d3e051488 /go.mod | |
parent | 96236c9d80cea2d6ba83591a7d08a8cc096fd8d3 (diff) |
refactor: port fetchers to Go
* Austria: upgraded to RIS API v2.6 because v2.5 has been turned off
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -2,7 +2,20 @@ module push-f.com/lex-surf go 1.23.5 -require github.com/BurntSushi/toml v1.5.0 +require ( + github.com/BurntSushi/toml v1.5.0 + github.com/antchfx/htmlquery v1.3.4 + github.com/antchfx/xmlquery v1.4.4 + golang.org/x/term v0.31.0 + golang.org/x/text v0.24.0 +) + +require ( + 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/sys v0.32.0 // indirect +) // test dependencies require github.com/peter-evans/patience v0.3.0 |