aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorGibheer <gibheer+git@zero-knowledge.org>2024-09-05 19:38:25 +0200
committerGibheer <gibheer+git@zero-knowledge.org>2024-09-05 19:38:25 +0200
commit6ea4d2c82de80efc87708e5e182034b7c6c2019e (patch)
tree35c0856a929040216c82153ca62d43b27530a887 /go.mod
parent6f64eeace1b66639b9380b44e88a8d54850a4306 (diff)
switch from github.com/lib/pq to github.com/jackc/pgx/v5HEAD20240905master
lib/pq is out of maintenance for some time now, so switch to the newer more active library. Looks like it finally stabilized after a long time.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod15
1 files changed, 10 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index fe08fd8..a5c77fa 100644
--- a/go.mod
+++ b/go.mod
@@ -3,12 +3,17 @@ module git.zero-knowledge.org/gibheer/monzero
go 1.18
require (
- github.com/BurntSushi/toml v1.2.1
- github.com/lib/pq v1.10.7
- golang.org/x/crypto v0.2.0
+ github.com/BurntSushi/toml v1.4.0
+ github.com/jackc/pgx/v5 v5.6.0
+ golang.org/x/crypto v0.27.0
+ golang.org/x/term v0.24.0
)
require (
- golang.org/x/sys v0.2.0 // indirect
- golang.org/x/term v0.2.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.1 // indirect
+ golang.org/x/sync v0.8.0 // indirect
+ golang.org/x/sys v0.25.0 // indirect
+ golang.org/x/text v0.18.0 // indirect
)