-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch zstd library to allow build on arm64 and amd64
- Loading branch information
Showing
5 changed files
with
45 additions
and
11 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,21 +1,34 @@ | ||
module github.com/go-mysql-org/go-mysql | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/DataDog/zstd v1.5.2 | ||
github.com/Masterminds/semver v1.5.0 | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/jmoiron/sqlx v1.3.3 | ||
github.com/klauspost/compress v1.16.6 | ||
github.com/pingcap/check v0.0.0-20190102082844-67f458068fc8 | ||
github.com/pingcap/errors v0.11.5-0.20210425183316-da1aaba5fb63 | ||
github.com/pingcap/tidb/parser v0.0.0-20221126021158-6b02a5d8ba7d | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 | ||
github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726 | ||
github.com/siddontang/go-log v0.0.0-20180807004314-8d05993dda07 | ||
github.com/stretchr/testify v1.8.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pingcap/log v0.0.0-20210625125904-98ed8e2eb1c7 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.4.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.18.1 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/tools v0.0.0-20201125231158-b5590deeca9b // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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
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