-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
73 lines (68 loc) · 2.86 KB
/
go.mod
File metadata and controls
73 lines (68 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module github.com/tkcrm/pgxgen
go 1.26.0
require (
github.com/cubicdaiya/gonp v1.0.4 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/go-sql-driver/mysql v1.9.3 // indirect
github.com/gobeam/stringy v0.0.7
github.com/jinzhu/inflection v1.0.0
github.com/spf13/cobra v1.10.2 // indirect
github.com/spf13/pflag v1.0.10 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/tools v0.44.0
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/antlr4-go/antlr/v4 v4.13.1
github.com/fsnotify/fsnotify v1.9.0
github.com/go-playground/validator/v10 v10.30.2
github.com/pganalyze/pg_query_go/v6 v6.2.2
github.com/pingcap/tidb/pkg/parser v0.0.0-20260418072757-ce92298d1124
github.com/sqlc-dev/sqlc v1.31.1
github.com/stretchr/testify v1.11.1
github.com/urfave/cli/v3 v3.8.0
)
require (
cel.dev/expr v0.25.1 // indirect
filippo.io/edwards25519 v1.2.0 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/fatih/structtag v1.2.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/google/cel-go v0.28.0 // indirect
github.com/jackc/pgx/v5 v5.9.2 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/ncruces/go-sqlite3 v0.32.0 // indirect
github.com/ncruces/julianday v1.0.0 // indirect
github.com/pingcap/failpoint v0.0.0-20260406204437-bbc9d102c19e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/sqlc-dev/doubleclick v1.0.0 // indirect
github.com/tetratelabs/wazero v1.11.0 // indirect
github.com/wasilibs/go-pgquery v0.0.0-20260406132815-2d1882eb027f // indirect
github.com/wasilibs/wazero-helpers v0.0.0-20250123031827-cd30c44769bb // indirect
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/net v0.53.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478 // indirect
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/pingcap/errors v0.11.5-0.20250523034308-74f78ae071ee // indirect
github.com/pingcap/log v1.1.0 // indirect
github.com/riza-io/grpc-go v0.2.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.1 // indirect
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect
golang.org/x/mod v0.35.0
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0
google.golang.org/grpc v1.80.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
)