apps/cellar/go.mod 1.3 K raw
1
module github.com/stevedylandev/andromeda/apps/cellar
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
)
12
13
require (
14
	github.com/dustin/go-humanize v1.0.1 // indirect
15
	github.com/google/uuid v1.6.0 // indirect
16
	github.com/mattn/go-isatty v0.0.20 // indirect
17
	github.com/ncruces/go-strftime v0.1.9 // indirect
18
	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
19
	golang.org/x/crypto v0.39.0 // indirect
20
	golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
21
	golang.org/x/sys v0.33.0 // indirect
22
	modernc.org/libc v1.65.7 // indirect
23
	modernc.org/mathutil v1.7.1 // indirect
24
	modernc.org/memory v1.11.0 // indirect
25
	modernc.org/sqlite v1.37.1 // indirect
26
)
27
28
replace (
29
	github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth
30
	github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config
31
	github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter
32
	github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite
33
	github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web
34
)