-
-
Notifications
You must be signed in to change notification settings - Fork 304
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
Aleksandr Tuliakov
committed
Dec 12, 2023
1 parent
a22f420
commit 79f5457
Showing
3 changed files
with
1,523 additions
and
224 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,50 @@ | ||
module gorm.io/gen | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require ( | ||
golang.org/x/tools v0.6.0 | ||
golang.org/x/tools v0.16.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
gorm.io/datatypes v1.1.1-0.20230130040222-c43177d3cf8c | ||
gorm.io/driver/clickhouse v0.5.0 | ||
gorm.io/driver/mysql v1.5.1-0.20230509030346-3715c134c25b | ||
gorm.io/driver/postgres v1.4.5 | ||
gorm.io/driver/sqlite v1.4.3 | ||
gorm.io/driver/sqlserver v1.4.1 | ||
gorm.io/gorm v1.25.1-0.20230505075827-e61b98d69677 | ||
gorm.io/hints v1.1.0 | ||
gorm.io/plugin/dbresolver v1.3.0 | ||
gorm.io/datatypes v1.2.0 | ||
gorm.io/driver/clickhouse v0.5.1 | ||
gorm.io/driver/mysql v1.5.2 | ||
gorm.io/driver/postgres v1.5.4 | ||
gorm.io/driver/sqlite v1.5.4 | ||
gorm.io/driver/sqlserver v1.5.2 | ||
gorm.io/gorm v1.25.5 | ||
gorm.io/hints v1.1.2 | ||
gorm.io/plugin/dbresolver v1.5.0 | ||
) | ||
|
||
require ( | ||
github.com/ClickHouse/ch-go v0.48.0 // indirect | ||
github.com/ClickHouse/clickhouse-go/v2 v2.3.0 // indirect | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/ClickHouse/ch-go v0.53.0 // indirect | ||
github.com/ClickHouse/clickhouse-go/v2 v2.8.3 // indirect | ||
github.com/andybalholm/brotli v1.0.5 // indirect | ||
github.com/go-faster/city v1.0.1 // indirect | ||
github.com/go-faster/errors v0.6.1 // indirect | ||
github.com/go-sql-driver/mysql v1.7.0 // indirect | ||
github.com/go-sql-driver/mysql v1.7.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.3.0 // indirect | ||
github.com/hashicorp/go-version v1.6.0 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.13.0 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.1 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.12.0 // indirect | ||
github.com/jackc/pgx/v4 v4.17.2 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgx/v5 v5.4.3 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/klauspost/compress v1.15.11 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.15 // indirect | ||
github.com/microsoft/go-mssqldb v0.17.0 // indirect | ||
github.com/paulmach/orb v0.7.1 // indirect | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.17 // indirect | ||
github.com/microsoft/go-mssqldb v1.6.0 // indirect | ||
github.com/paulmach/orb v0.9.0 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/stretchr/testify v1.8.2 // indirect | ||
go.opentelemetry.io/otel v1.10.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.10.0 // indirect | ||
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
go.opentelemetry.io/otel v1.14.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.14.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
) |
Oops, something went wrong.