2023-01-13 19:43:42 +00:00
|
|
|
module dev.tandem.ws/tandem/numerus
|
|
|
|
|
|
|
|
go 1.18
|
|
|
|
|
Downgrade pgx to v4
I’ve tried to make RPM packages of numerus and pgx/v4 for AlmaLinux, so
install in a virtual server, but i was unable to break a build cycle
between golang/x/text, required by pgx, and golang/x/tools both a
dependency and a dependee of golang/x/text: once tools finished
building, it would trigger a new build for text, that in turn would
trigger a build for all its dependences, including tools.
At the end i had to create a Debian repository, because they already
have all the packages, even though i had to back port pgx/v4 from
Testing to bullseye. I did not want to try my luck with writting
packages for pgx/v5, so v4 it is.
2023-01-15 19:45:45 +00:00
|
|
|
require github.com/jackc/pgx/v4 v4.17.2
|
2023-01-13 19:43:42 +00:00
|
|
|
|
|
|
|
require (
|
Downgrade pgx to v4
I’ve tried to make RPM packages of numerus and pgx/v4 for AlmaLinux, so
install in a virtual server, but i was unable to break a build cycle
between golang/x/text, required by pgx, and golang/x/tools both a
dependency and a dependee of golang/x/text: once tools finished
building, it would trigger a new build for text, that in turn would
trigger a build for all its dependences, including tools.
At the end i had to create a Debian repository, because they already
have all the packages, even though i had to back port pgx/v4 from
Testing to bullseye. I did not want to try my luck with writting
packages for pgx/v5, so v4 it is.
2023-01-15 19:45:45 +00:00
|
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
|
|
github.com/jackc/pgconn v1.13.0 // indirect
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
2023-01-13 19:43:42 +00:00
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
Downgrade pgx to v4
I’ve tried to make RPM packages of numerus and pgx/v4 for AlmaLinux, so
install in a virtual server, but i was unable to break a build cycle
between golang/x/text, required by pgx, and golang/x/tools both a
dependency and a dependee of golang/x/text: once tools finished
building, it would trigger a new build for text, that in turn would
trigger a build for all its dependences, including tools.
At the end i had to create a Debian repository, because they already
have all the packages, even though i had to back port pgx/v4 from
Testing to bullseye. I did not want to try my luck with writting
packages for pgx/v5, so v4 it is.
2023-01-15 19:45:45 +00:00
|
|
|
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
|
2023-01-13 19:43:42 +00:00
|
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
Downgrade pgx to v4
I’ve tried to make RPM packages of numerus and pgx/v4 for AlmaLinux, so
install in a virtual server, but i was unable to break a build cycle
between golang/x/text, required by pgx, and golang/x/tools both a
dependency and a dependee of golang/x/text: once tools finished
building, it would trigger a new build for text, that in turn would
trigger a build for all its dependences, including tools.
At the end i had to create a Debian repository, because they already
have all the packages, even though i had to back port pgx/v4 from
Testing to bullseye. I did not want to try my luck with writting
packages for pgx/v5, so v4 it is.
2023-01-15 19:45:45 +00:00
|
|
|
github.com/jackc/pgtype v1.12.0 // indirect
|
|
|
|
github.com/jackc/puddle v1.3.0 // indirect
|
2023-01-13 19:43:42 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
|
|
|
|
golang.org/x/text v0.3.8 // indirect
|
|
|
|
)
|