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