forked from timsolov/pgoutput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
26 lines (23 loc) · 968 Bytes
/
go.mod
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
module github.com/timsolov/pgoutput
require (
github.com/google/go-cmp v0.2.0
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
// github.com/jackc/pgconn v1.10.1
github.com/jackc/pgconn v1.6.5-0.20200823013804-5db484908cf7
github.com/jackc/pglogrepl v0.0.0-20211030141007-2b9e46709343
github.com/jackc/pgproto3/v2 v2.2.0
github.com/jackc/pgx v3.2.0+incompatible
github.com/lib/pq v1.3.0 // indirect
github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc // indirect
)
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/pkg/errors v0.8.1 // indirect
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
go 1.17