1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2025-03-05 03:07:06 +02:00

40 lines
1.4 KiB
Modula-2
Raw Normal View History

2023-09-28 17:45:44 +03:00
module github.com/ManyakRus/crud_generator
2024-11-18 15:17:44 +03:00
go 1.22.1
2023-09-28 17:45:44 +03:00
require (
github.com/ManyakRus/starter v1.0.92
2024-10-10 18:00:49 +03:00
github.com/alexsergivan/transliterator v1.0.1
2023-11-14 17:07:41 +03:00
github.com/bxcodec/faker/v3 v3.8.1
github.com/davecgh/go-spew v1.1.1
2024-10-10 18:00:49 +03:00
github.com/gobeam/stringy v0.0.7
2023-11-14 17:07:41 +03:00
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 13:58:31 +03:00
github.com/otiai10/copy v1.14.0
2023-11-14 17:07:41 +03:00
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e
2024-11-18 15:17:44 +03:00
golang.org/x/tools v0.27.0
2024-10-10 17:42:37 +03:00
gorm.io/gorm v1.25.12
2023-09-28 17:45:44 +03:00
)
require (
2023-11-14 17:07:41 +03:00
github.com/ManyakRus/logrus v0.0.0-20231019115155-9e6fede0d792 // indirect
2024-10-10 17:42:37 +03:00
github.com/google/uuid v1.6.0 // indirect
2023-09-28 17:45:44 +03:00
github.com/jackc/pgpassfile v1.0.0 // indirect
2024-10-10 17:42:37 +03:00
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.7.1 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
2023-09-28 17:45:44 +03:00
github.com/jinzhu/now v1.1.5 // indirect
github.com/joho/godotenv v1.5.1 // indirect
2024-11-18 15:17:44 +03:00
golang.org/x/crypto v0.29.0 // indirect
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/sync v0.9.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.20.0 // indirect
google.golang.org/protobuf v1.35.2 // indirect
gorm.io/driver/postgres v1.5.11 // indirect
2023-09-28 17:45:44 +03:00
)