-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from mattn/update-deps
upgrade go version & update deps
- Loading branch information
Showing
2 changed files
with
110 additions
and
10 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,19 +1,43 @@ | ||
module github.com/sqls-server/sqls | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/denisenkom/go-mssqldb v0.11.0 | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/godror/godror v0.29.0 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/jackc/pgx/v4 v4.12.0 | ||
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect | ||
github.com/denisenkom/go-mssqldb v0.12.3 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/godror/godror v0.41.0 | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/jackc/pgx/v4 v4.18.1 | ||
github.com/k0kubun/pp v2.4.0+incompatible | ||
github.com/mattn/go-sqlite3 v1.14.8 | ||
github.com/mattn/go-sqlite3 v1.14.19 | ||
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/sourcegraph/jsonrpc2 v0.1.0 | ||
github.com/urfave/cli/v2 v2.3.0 | ||
github.com/sourcegraph/jsonrpc2 v0.2.0 | ||
github.com/urfave/cli/v2 v2.26.0 | ||
golang.org/x/crypto v0.17.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect | ||
github.com/go-logfmt/logfmt v0.6.0 // indirect | ||
github.com/godror/knownpb v0.1.1 // indirect | ||
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect | ||
github.com/golang-sql/sqlexp v0.1.0 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.14.1 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.2 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgtype v1.14.0 // indirect | ||
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect | ||
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
Oops, something went wrong.