-
-
Notifications
You must be signed in to change notification settings - Fork 697
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
48 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,41 @@ | ||
module gorm.io/playground | ||
|
||
go 1.20 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.3 | ||
|
||
require ( | ||
gorm.io/driver/mysql v1.5.2 | ||
gorm.io/driver/postgres v1.5.2 | ||
gorm.io/driver/sqlite v1.5.3 | ||
gorm.io/driver/sqlserver v1.5.1 | ||
gorm.io/gen v0.3.25 | ||
gorm.io/gorm v1.25.4 | ||
gorm.io/driver/mysql v1.5.7 | ||
gorm.io/driver/postgres v1.5.10 | ||
gorm.io/driver/sqlite v1.5.6 | ||
gorm.io/driver/sqlserver v1.5.4 | ||
gorm.io/gen v0.3.26 | ||
gorm.io/gorm v1.25.12 | ||
) | ||
|
||
require ( | ||
github.com/go-sql-driver/mysql v1.7.1 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/go-sql-driver/mysql v1.8.1 // indirect | ||
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect | ||
github.com/golang-sql/sqlexp v0.1.0 // indirect | ||
github.com/google/uuid 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.4.3 // indirect | ||
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 | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.17 // indirect | ||
github.com/microsoft/go-mssqldb v1.5.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/sys v0.14.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.15.0 // indirect | ||
gorm.io/datatypes v1.1.1-0.20230130040222-c43177d3cf8c // indirect | ||
gorm.io/hints v1.1.0 // indirect | ||
gorm.io/plugin/dbresolver v1.5.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.24 // indirect | ||
github.com/microsoft/go-mssqldb v1.7.2 // indirect | ||
golang.org/x/crypto v0.29.0 // 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 | ||
golang.org/x/tools v0.27.0 // indirect | ||
gorm.io/datatypes v1.2.4 // indirect | ||
gorm.io/hints v1.1.2 // indirect | ||
gorm.io/plugin/dbresolver v1.5.3 // indirect | ||
) | ||
|
||
replace gorm.io/gorm => ./gorm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters