Search/go.mod

22 lines
551 B
Modula-2
Raw Normal View History

2024-03-27 21:30:19 +01:00
module searchengine
2024-04-08 13:15:23 +02:00
go 1.18
2024-03-27 21:30:19 +01:00
require (
github.com/PuerkitoBio/goquery v1.9.1 // direct
github.com/chai2010/webp v1.1.1
github.com/leonelquinteros/gotext v1.7.0
2024-06-13 21:27:49 +02:00
github.com/shirou/gopsutil v3.21.11+incompatible
golang.org/x/image v0.21.0
gopkg.in/ini.v1 v1.67.0
2024-06-29 21:27:48 +02:00
)
2024-08-08 15:03:33 +02:00
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
2024-08-08 15:03:33 +02:00
)