database/go.mod

30 lines
935 B
Modula-2
Raw Normal View History

2025-03-27 14:21:57 +01:00
module netgarden.dev/maf/database
go 1.24.1
2025-03-28 08:50:07 +01:00
replace netgarden.dev/maf/maf => ../../maf/maf
2025-03-27 14:21:57 +01:00
require (
github.com/satori/go.uuid v1.2.0
gorm.io/driver/postgres v1.5.11
gorm.io/gorm v1.25.12
netgarden.dev/maf/maf v0.0.0-20250327102624-f25d54ddf786
)
require (
github.com/elliotchance/orderedmap v1.6.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.5.5 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kelseyhightower/envconfig v1.4.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)