apps/kepler/go.mod 1.5 K raw
1
module github.com/stevedylandev/andromeda/apps/kepler
2
3
go 1.25
4
5
require (
6
	github.com/go-git/go-git/v5 v5.13.1
7
	github.com/stevedylandev/andromeda/pkg/config v0.0.0
8
	github.com/stevedylandev/andromeda/pkg/web v0.0.0
9
	github.com/yuin/goldmark v1.7.8
10
)
11
12
require (
13
	dario.cat/mergo v1.0.0 // indirect
14
	github.com/Microsoft/go-winio v0.6.1 // indirect
15
	github.com/ProtonMail/go-crypto v1.1.3 // indirect
16
	github.com/cloudflare/circl v1.3.7 // indirect
17
	github.com/cyphar/filepath-securejoin v0.3.6 // indirect
18
	github.com/emirpasic/gods v1.18.1 // indirect
19
	github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
20
	github.com/go-git/go-billy/v5 v5.6.1 // indirect
21
	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
22
	github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
23
	github.com/kevinburke/ssh_config v1.2.0 // indirect
24
	github.com/pjbgf/sha1cd v0.3.0 // indirect
25
	github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
26
	github.com/skeema/knownhosts v1.3.0 // indirect
27
	github.com/xanzy/ssh-agent v0.3.3 // indirect
28
	golang.org/x/crypto v0.31.0 // indirect
29
	golang.org/x/mod v0.17.0 // indirect
30
	golang.org/x/net v0.33.0 // indirect
31
	golang.org/x/sync v0.10.0 // indirect
32
	golang.org/x/sys v0.28.0 // indirect
33
	golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
34
	gopkg.in/warnings.v0 v0.1.2 // indirect
35
)
36
37
replace (
38
	github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config
39
	github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web
40
)