-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
22 lines (19 loc) · 771 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
module replication-stream-ingestion
go 1.17
require (
github.com/jackc/pgconn v1.10.0
github.com/jackc/pglogrepl v0.0.0-20210731151948-9f1effd582c4
github.com/jackc/pgproto3/v2 v2.1.1
github.com/sirupsen/logrus v1.4.2
)
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/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)