| 1 | module github.com/stevedylandev/andromeda/apps/feeds |
| 2 | |
| 3 | go 1.25.0 |
| 4 | |
| 5 | require ( |
| 6 | github.com/mmcdole/gofeed v1.3.0 |
| 7 | github.com/stevedylandev/andromeda/pkg/auth v0.0.0 |
| 8 | github.com/stevedylandev/andromeda/pkg/config v0.0.0 |
| 9 | github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0 |
| 10 | github.com/stevedylandev/andromeda/pkg/sqlite v0.0.0 |
| 11 | github.com/stevedylandev/andromeda/pkg/web v0.0.0 |
| 12 | golang.org/x/crypto/x509roots/fallback v0.0.0-20260511143831-44decbfe70e2 |
| 13 | golang.org/x/net v0.41.0 |
| 14 | ) |
| 15 | |
| 16 | replace ( |
| 17 | github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth |
| 18 | github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config |
| 19 | github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter |
| 20 | github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite |
| 21 | github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web |
| 22 | ) |
| 23 | |
| 24 | require ( |
| 25 | github.com/PuerkitoBio/goquery v1.8.0 // indirect |
| 26 | github.com/andybalholm/cascadia v1.3.1 // indirect |
| 27 | github.com/dustin/go-humanize v1.0.1 // indirect |
| 28 | github.com/google/uuid v1.6.0 // indirect |
| 29 | github.com/json-iterator/go v1.1.12 // indirect |
| 30 | github.com/mattn/go-isatty v0.0.20 // indirect |
| 31 | github.com/mmcdole/goxpp v1.1.1-0.20240225020742-a0c311522b23 // indirect |
| 32 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 33 | github.com/modern-go/reflect2 v1.0.2 // indirect |
| 34 | github.com/ncruces/go-strftime v0.1.9 // indirect |
| 35 | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
| 36 | golang.org/x/crypto v0.39.0 // indirect |
| 37 | golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect |
| 38 | golang.org/x/sys v0.33.0 // indirect |
| 39 | golang.org/x/text v0.26.0 // indirect |
| 40 | modernc.org/libc v1.65.7 // indirect |
| 41 | modernc.org/mathutil v1.7.1 // indirect |
| 42 | modernc.org/memory v1.11.0 // indirect |
| 43 | modernc.org/sqlite v1.37.1 // indirect |
| 44 | ) |