glance/go.mod

25 lines
724 B
Modula-2
Raw Normal View History

2024-04-27 21:10:24 +02:00
module github.com/glanceapp/glance
2024-10-01 16:47:56 +02:00
go 1.23.1
2024-04-27 21:10:24 +02:00
require (
github.com/fsnotify/fsnotify v1.8.0
2024-04-29 00:53:32 +02:00
github.com/mmcdole/gofeed v1.3.0
2024-10-22 00:27:25 +02:00
github.com/tidwall/gjson v1.18.0
2024-12-20 00:05:47 +01:00
golang.org/x/text v0.21.0
2024-04-27 21:10:24 +02:00
gopkg.in/yaml.v3 v3.0.1
)
require (
2024-10-01 16:47:56 +02:00
github.com/PuerkitoBio/goquery v1.10.0 // indirect
2024-12-20 00:05:47 +01:00
github.com/andybalholm/cascadia v1.3.3 // indirect
2024-04-27 21:10:24 +02:00
github.com/json-iterator/go v1.1.12 // indirect
2024-04-29 00:53:32 +02:00
github.com/mmcdole/goxpp v1.1.1 // indirect
2024-04-27 21:10:24 +02:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
2024-10-22 00:27:25 +02:00
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
2024-12-20 00:05:47 +01:00
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
2024-04-27 21:10:24 +02:00
)