forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
20 lines (18 loc) · 648 Bytes
/
go.mod
File metadata and controls
20 lines (18 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module github.com/kyleconroy/sqlc
go 1.15
require (
github.com/antlr/antlr4 v0.0.0-20200209180723-1177c0b58d07
github.com/davecgh/go-spew v1.1.1
github.com/go-sql-driver/mysql v1.6.0
github.com/google/go-cmp v0.5.5
github.com/jackc/pgx/v4 v4.11.0
github.com/jinzhu/inflection v1.0.0
github.com/kr/pretty v0.2.1 // indirect
github.com/lib/pq v1.10.1
github.com/pganalyze/pg_query_go/v2 v2.0.2
github.com/pingcap/parser v0.0.0-20201024025010-3b2fb4b41d73
github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.0-20200121175148-a6ecf24a6d71
)