gorm/tests/go.mod

40 lines
1.2 KiB
Modula-2
Raw Normal View History

2020-06-02 05:34:50 +03:00
module gorm.io/gorm/tests
2023-07-25 05:47:19 +03:00
go 1.18
2020-06-02 05:34:50 +03:00
require (
github.com/google/uuid v1.6.0
github.com/jinzhu/now v1.1.5
github.com/lib/pq v1.10.9
2024-03-18 11:28:46 +03:00
github.com/stretchr/testify v1.9.0
gorm.io/driver/mysql v1.5.5
gorm.io/driver/postgres v1.5.7
gorm.io/driver/sqlite v1.5.5
gorm.io/driver/sqlserver v1.5.3
2024-03-18 11:28:46 +03:00
gorm.io/gorm v1.25.7
2023-07-25 05:47:19 +03:00
)
require (
2024-03-18 11:28:46 +03:00
filippo.io/edwards25519 v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
2024-03-18 11:28:46 +03:00
github.com/go-sql-driver/mysql v1.8.0 // indirect
2023-07-25 05:47:19 +03:00
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
2024-03-18 11:28:46 +03:00
github.com/jackc/pgx/v5 v5.5.5 // indirect
2023-07-25 05:47:19 +03:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
2024-03-18 11:28:46 +03:00
github.com/microsoft/go-mssqldb v1.7.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
2024-03-18 11:28:46 +03:00
golang.org/x/crypto v0.21.0 // indirect
2023-11-09 13:46:39 +03:00
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2020-06-02 05:34:50 +03:00
)
replace gorm.io/gorm => ../
2023-11-09 13:46:39 +03:00
replace github.com/jackc/pgx/v5 => github.com/jackc/pgx/v5 v5.4.3