accountserver/go.mod

33 lines
1.2 KiB
Modula-2
Raw Normal View History

2024-08-19 13:18:59 +02:00
module code.icod.de/auth/accountserver
go 1.23.0
require (
2024-09-03 15:56:34 +02:00
entgo.io/ent v0.14.1
github.com/google/uuid v1.6.0
2024-08-19 13:18:59 +02:00
github.com/spf13/cobra v1.8.1
)
require (
2024-09-03 15:56:34 +02:00
ariga.io/atlas v0.27.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/go-openapi/inflect v0.21.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
2024-08-19 13:54:46 +02:00
github.com/idc77/gomail v0.0.0-20240819113050-ac97008b42eb // indirect
2024-08-19 13:18:59 +02:00
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2024-09-03 15:56:34 +02:00
github.com/matthewhartstonge/argon2 v1.0.1-0.20240808062706-62179c3b7f7d // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
2024-08-19 13:18:59 +02:00
github.com/spf13/pflag v1.0.5 // indirect
2024-09-03 15:56:34 +02:00
github.com/zclconf/go-cty v1.15.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/tools v0.24.0 // indirect
2024-08-19 13:54:46 +02:00
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
2024-08-19 13:18:59 +02:00
)