diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-01-13 17:33:54 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-01-13 17:33:54 +0200 |
commit | 924f3a77086f6df9fcc0da90bdfd98e0a7d22db8 (patch) | |
tree | 987a92de431439104fb99d195814cde099063890 /go.mod | |
parent | app/arches/leaf-packages: add new route to get leaf packages on that arch (diff) | |
download | soko-924f3a77086f6df9fcc0da90bdfd98e0a7d22db8.tar.gz soko-924f3a77086f6df9fcc0da90bdfd98e0a7d22db8.tar.bz2 soko-924f3a77086f6df9fcc0da90bdfd98e0a7d22db8.zip |
update go dependencies
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 25 |
1 files changed, 12 insertions, 13 deletions
@@ -3,34 +3,33 @@ module soko go 1.21 require ( - github.com/99designs/gqlgen v0.17.40 - github.com/go-git/go-git/v5 v5.10.0 + github.com/99designs/gqlgen v0.17.42 + github.com/go-git/go-git/v5 v5.11.0 github.com/go-pg/pg v8.0.7+incompatible - github.com/go-pg/pg/v10 v10.11.2 + github.com/go-pg/pg/v10 v10.12.0 github.com/gorilla/feeds v1.1.2 github.com/jasonlvhit/gocron v0.0.1 - github.com/prometheus/client_golang v1.17.0 + github.com/prometheus/client_golang v1.18.0 github.com/ulikunitz/xz v0.5.11 github.com/vektah/gqlparser/v2 v2.5.10 - golang.org/x/time v0.4.0 + golang.org/x/time v0.5.0 ) require ( dario.cat/mergo v1.0.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect - github.com/acomagu/bufpipe v1.0.4 // indirect github.com/agnivade/levenshtein v1.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect - github.com/cloudflare/circl v1.3.6 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect github.com/go-pg/zerochecker v0.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/google/uuid v1.4.0 // indirect + github.com/google/uuid v1.5.0 // indirect github.com/gorilla/websocket v1.5.1 // indirect github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect @@ -51,12 +50,12 @@ require ( github.com/vmihailenco/tagparser v0.1.2 // indirect github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect - golang.org/x/crypto v0.15.0 // indirect + golang.org/x/crypto v0.18.0 // indirect golang.org/x/mod v0.14.0 // indirect - golang.org/x/net v0.18.0 // indirect - golang.org/x/sys v0.14.0 // indirect - golang.org/x/tools v0.15.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect + golang.org/x/net v0.20.0 // indirect + golang.org/x/sys v0.16.0 // indirect + golang.org/x/tools v0.17.0 // indirect + google.golang.org/protobuf v1.32.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect mellium.im/sasl v0.3.1 // indirect ) |