| 1 | module github.com/stevedylandev/andromeda/apps/bookmarks |
| 2 | |
| 3 | go 1.24.4 |
| 4 | |
| 5 | require ( |
| 6 | github.com/stevedylandev/andromeda/pkg/auth v0.0.0 |
| 7 | github.com/stevedylandev/andromeda/pkg/config v0.0.0 |
| 8 | github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0 |
| 9 | github.com/stevedylandev/andromeda/pkg/sqlite v0.0.0 |
| 10 | github.com/stevedylandev/andromeda/pkg/web v0.0.0 |
| 11 | golang.org/x/net v0.41.0 |
| 12 | ) |
| 13 | |
| 14 | require ( |
| 15 | github.com/dustin/go-humanize v1.0.1 // indirect |
| 16 | github.com/google/uuid v1.6.0 // indirect |
| 17 | github.com/mattn/go-isatty v0.0.20 // indirect |
| 18 | github.com/ncruces/go-strftime v0.1.9 // indirect |
| 19 | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
| 20 | golang.org/x/crypto v0.39.0 // indirect |
| 21 | golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect |
| 22 | golang.org/x/sys v0.33.0 // indirect |
| 23 | modernc.org/libc v1.65.7 // indirect |
| 24 | modernc.org/mathutil v1.7.1 // indirect |
| 25 | modernc.org/memory v1.11.0 // indirect |
| 26 | modernc.org/sqlite v1.37.1 // indirect |
| 27 | ) |
| 28 | |
| 29 | replace ( |
| 30 | github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth |
| 31 | github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config |
| 32 | github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter |
| 33 | github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite |
| 34 | github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web |
| 35 | ) |