taldir

Directory service to resolve wallet mailboxes by messenger addresses
Log | Files | Refs | Submodules | README | LICENSE

commit 0478a7a1d81fcf63168dd53b46e52ebb87c42269
parent 7cc42613647462a3b82d276de0232c392e398fd7
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Fri, 25 Apr 2025 21:25:43 +0200

update dependencies

Diffstat:
Mgo.mod | 35++++++++++++++++++++---------------
1 file changed, 20 insertions(+), 15 deletions(-)

diff --git a/go.mod b/go.mod @@ -1,36 +1,41 @@ module taler.net/taldir -go 1.18 +go 1.23.0 + +toolchain go1.23.4 require ( github.com/gertd/go-pluralize v0.2.1 - github.com/gorilla/mux v1.8.0 + github.com/gorilla/mux v1.8.1 github.com/jarcoal/httpmock v1.2.0 github.com/kataras/i18n v0.0.8 - github.com/schanzen/taler-go v1.0.6 + github.com/schanzen/taler-go v1.0.8 github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e gnunet v0.1.27 gopkg.in/ini.v1 v1.67.0 - gorm.io/driver/postgres v1.3.4 - gorm.io/gorm v1.23.4 + gorm.io/driver/postgres v1.5.11 + gorm.io/gorm v1.26.0 ) require ( - github.com/BurntSushi/toml v1.2.1 // indirect - github.com/bfix/gospel v1.2.15 // indirect + github.com/BurntSushi/toml v1.5.0 // indirect + github.com/bfix/gospel v1.2.31 // indirect github.com/jackc/chunkreader/v2 v2.0.1 // indirect - github.com/jackc/pgconn v1.11.0 // indirect + github.com/jackc/pgconn v1.14.3 // indirect github.com/jackc/pgio v1.0.0 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect - github.com/jackc/pgproto3/v2 v2.2.0 // indirect - github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect - github.com/jackc/pgtype v1.10.0 // indirect - github.com/jackc/pgx/v4 v4.15.0 // indirect + github.com/jackc/pgproto3/v2 v2.3.3 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect + github.com/jackc/pgtype v1.14.4 // indirect + github.com/jackc/pgx/v4 v4.18.3 // indirect + github.com/jackc/pgx/v5 v5.7.4 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect - golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect - golang.org/x/net v0.9.0 // indirect - golang.org/x/text v0.9.0 // indirect + golang.org/x/crypto v0.37.0 // indirect + golang.org/x/net v0.39.0 // indirect + golang.org/x/sync v0.13.0 // indirect + golang.org/x/text v0.24.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect )