forked from longbridgeapp/gorm-sharding
-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
1 parent
ab77754
commit 9f806ed
Showing
3 changed files
with
77 additions
and
202 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,34 +1,29 @@ | ||
module gorm.io/sharding | ||
|
||
go 1.17 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/bwmarrin/snowflake v0.3.0 | ||
github.com/longbridgeapp/assert v0.1.0 | ||
github.com/longbridgeapp/assert v1.1.0 | ||
github.com/longbridgeapp/sqlparser v0.3.1 | ||
gorm.io/driver/mysql v1.4.1 | ||
gorm.io/driver/postgres v1.4.4 | ||
gorm.io/gorm v1.24.0 | ||
gorm.io/hints v1.1.0 | ||
gorm.io/plugin/dbresolver v1.3.0 | ||
gorm.io/driver/mysql v1.4.7 | ||
gorm.io/driver/postgres v1.4.8 | ||
gorm.io/gorm v1.24.3 | ||
gorm.io/hints v1.1.1 | ||
gorm.io/plugin/dbresolver v1.4.1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-sql-driver/mysql 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/go-sql-driver/mysql v1.7.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.3.0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/testify v1.8.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
github.com/stretchr/testify v1.8.1 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.