aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-11-17 14:36:33 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2023-11-17 14:36:33 +0200
commit0807139d26b8edca050d4381b317d2a1a264c5aa (patch)
tree30a8f85a361e7e636e9c48d844fefb177192d0d2 /go.mod
parentupdater/repology: custom user-agent, add rate limiter of 2sec (diff)
downloadsoko-0807139d26b8edca050d4381b317d2a1a264c5aa.tar.gz
soko-0807139d26b8edca050d4381b317d2a1a264c5aa.tar.bz2
soko-0807139d26b8edca050d4381b317d2a1a264c5aa.zip
go: bump to 1.21 and update all deps
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod52
1 files changed, 27 insertions, 25 deletions
diff --git a/go.mod b/go.mod
index 0b17b9c..02be1b7 100644
--- a/go.mod
+++ b/go.mod
@@ -1,59 +1,61 @@
module soko
-go 1.20
+go 1.21
require (
- github.com/99designs/gqlgen v0.17.36
- github.com/go-git/go-git/v5 v5.8.1
+ github.com/99designs/gqlgen v0.17.40
+ github.com/go-git/go-git/v5 v5.10.0
github.com/go-pg/pg v8.0.7+incompatible
- github.com/go-pg/pg/v10 v10.11.1
- github.com/gorilla/feeds v1.1.1
+ github.com/go-pg/pg/v10 v10.11.2
+ github.com/gorilla/feeds v1.1.2
github.com/jasonlvhit/gocron v0.0.1
- github.com/prometheus/client_golang v1.16.0
+ github.com/prometheus/client_golang v1.17.0
github.com/ulikunitz/xz v0.5.11
- github.com/vektah/gqlparser/v2 v2.5.8
+ github.com/vektah/gqlparser/v2 v2.5.10
+ golang.org/x/time v0.4.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-20230717121422-5aa5874ade95 // 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.3 // indirect
+ github.com/cloudflare/circl v1.3.6 // 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.4.1 // 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/golang/protobuf v1.5.3 // indirect
- github.com/gorilla/websocket v1.5.0 // indirect
- github.com/hashicorp/golang-lru/v2 v2.0.4 // indirect
+ github.com/google/uuid v1.4.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
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
- github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
+ github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
- github.com/prometheus/client_model v0.4.0 // indirect
- github.com/prometheus/common v0.44.0 // indirect
- github.com/prometheus/procfs v0.11.1 // indirect
+ github.com/prometheus/client_model v0.5.0 // indirect
+ github.com/prometheus/common v0.45.0 // indirect
+ github.com/prometheus/procfs v0.12.0 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
- github.com/skeema/knownhosts v1.2.0 // indirect
+ github.com/skeema/knownhosts v1.2.1 // indirect
+ github.com/sosodev/duration v1.2.0 // indirect
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
github.com/vmihailenco/bufpool v0.1.11 // indirect
- github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
+ github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
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.11.0 // indirect
- golang.org/x/mod v0.12.0 // indirect
- golang.org/x/net v0.12.0 // indirect
- golang.org/x/sys v0.10.0 // indirect
- golang.org/x/time v0.4.0
- golang.org/x/tools v0.11.0 // indirect
+ golang.org/x/crypto v0.15.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
gopkg.in/warnings.v0 v0.1.2 // indirect
mellium.im/sasl v0.3.1 // indirect