ab885b375b
It was a mistake to use it in other contexts. This made interop difficult between pacakges that depended on pgtype such as pgx and packages that did not like pgconn and pgproto3. In particular this was awkward for prepared statements. Because pgx depends on pgtype and the tests for pgtype depend on pgx this change will require a couple back and forth commits to get the go.mod dependecies correct.
19 lines
553 B
Modula-2
19 lines
553 B
Modula-2
module github.com/jackc/pgtype
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/jackc/pgio v1.0.0
|
|
github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/lib/pq v1.1.0
|
|
github.com/satori/go.uuid v1.2.0
|
|
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
|
|
github.com/stretchr/testify v1.4.0
|
|
go.uber.org/multierr v1.1.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
)
|
|
|
|
replace github.com/jackc/pgx/v4 => ../pgx
|