2023-09-28 16:45:44 +02:00
|
|
|
module github.com/ManyakRus/crud_generator
|
|
|
|
|
|
|
|
go 1.20
|
|
|
|
|
|
|
|
require (
|
2024-04-04 16:59:20 +02:00
|
|
|
github.com/ManyakRus/starter v1.0.22
|
2023-11-14 16:07:41 +02:00
|
|
|
github.com/bxcodec/faker/v3 v3.8.1
|
|
|
|
github.com/davecgh/go-spew v1.1.1
|
|
|
|
github.com/iancoleman/strcase v0.3.0
|
|
|
|
github.com/jimsmart/schema v0.2.1
|
|
|
|
github.com/jinzhu/inflection v1.0.0
|
|
|
|
github.com/logrusorgru/aurora v2.0.3+incompatible
|
|
|
|
github.com/ompluscator/dynamic-struct v1.4.0
|
2023-11-15 12:58:31 +02:00
|
|
|
github.com/otiai10/copy v1.14.0
|
2023-11-14 16:07:41 +02:00
|
|
|
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e
|
2024-04-05 15:53:35 +02:00
|
|
|
golang.org/x/tools v0.20.0
|
2024-04-04 16:59:20 +02:00
|
|
|
gorm.io/gorm v1.25.9
|
2023-09-28 16:45:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-11-14 16:07:41 +02:00
|
|
|
github.com/ManyakRus/logrus v0.0.0-20231019115155-9e6fede0d792 // indirect
|
2023-09-28 16:45:44 +02:00
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
2023-12-27 13:28:11 +02:00
|
|
|
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
|
2024-04-04 16:59:20 +02:00
|
|
|
github.com/jackc/pgx/v5 v5.5.5 // indirect
|
2023-11-14 16:07:41 +02:00
|
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
2023-09-28 16:45:44 +02:00
|
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
2024-04-05 15:53:35 +02:00
|
|
|
golang.org/x/crypto v0.22.0 // indirect
|
|
|
|
golang.org/x/mod v0.17.0 // indirect
|
|
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
|
|
golang.org/x/sys v0.19.0 // indirect
|
2023-11-14 16:07:41 +02:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2024-04-04 16:59:20 +02:00
|
|
|
gorm.io/driver/postgres v1.5.7 // indirect
|
2023-09-28 16:45:44 +02:00
|
|
|
)
|