forked from dimitri/regresql
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 834 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 834 Bytes
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
module github.com/boringsql/regresql
go 1.25.6
require (
github.com/boringsql/fixturize v0.3.0
github.com/boringsql/queries v1.6.1
github.com/jackc/pgx/v5 v5.8.0
github.com/mndrix/tap-go v0.0.0-20171203230836-629fa407e90b
github.com/pmezard/go-difflib v1.0.0
github.com/spf13/cobra v1.10.2
golang.org/x/term v0.39.0
gopkg.in/yaml.v3 v3.0.1
)
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/jackc/puddle/v2 v2.2.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/spf13/pflag v1.0.10 // indirect
golang.org/x/sync v0.17.0 // indirect
golang.org/x/sys v0.40.0 // indirect
golang.org/x/text v0.30.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)