aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorJordan <me@jordan.im>2023-12-16 17:41:01 -0700
committerJordan <me@jordan.im>2023-12-16 17:41:01 -0700
commit7ecc048ae012a631bc3f0dcbd62f6190384ea0cd (patch)
treef8dd09feb67af740fb92d13c458e602f9bee8d45 /go.mod
parenta3dac1a28fdc9e42d85c4686858c64597cf1a15b (diff)
downloadkeep-main.tar.gz
keep-main.zip
misc: go get -u; go mod tidy; go mod vendorHEADmain
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod18
1 files changed, 10 insertions, 8 deletions
diff --git a/go.mod b/go.mod
index 2eafb4f..d3f912e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,17 +1,19 @@
module keep
-go 1.17
+go 1.21
+
+toolchain go1.21.5
require (
- github.com/PuerkitoBio/purell v1.2.0
+ github.com/PuerkitoBio/purell v1.2.1
github.com/bwmarrin/discordgo v0.27.1
- github.com/mattn/go-sqlite3 v1.14.17
- golang.org/x/net v0.14.0
+ github.com/mattn/go-sqlite3 v1.14.19
+ golang.org/x/net v0.19.0
)
require (
- github.com/gorilla/websocket v1.5.0 // indirect
- golang.org/x/crypto v0.12.0 // indirect
- golang.org/x/sys v0.11.0 // indirect
- golang.org/x/text v0.12.0 // indirect
+ github.com/gorilla/websocket v1.5.1 // indirect
+ golang.org/x/crypto v0.16.0 // indirect
+ golang.org/x/sys v0.15.0 // indirect
+ golang.org/x/text v0.14.0 // indirect
)