aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorStefan Majewsky <stefan.majewsky@sap.com>2023-10-23 13:03:49 +0200
committerStefan Majewsky <stefan.majewsky@sap.com>2023-10-23 13:03:52 +0200
commit17c1ae81f02a4b2a24e79d4018dfb1061962420d (patch)
tree9780021c03322c5b4af00c9f2129871ce0af7a46 /go.mod
parent1ef60b5cd32e8470806dad1c559c4953916fe6fd (diff)
downloadgo-schwift-17c1ae81f02a4b2a24e79d4018dfb1061962420d.tar.gz
bump all dependencies to their latest versions
The minimum supported Go version is 1.20 since older versions are EOL.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod14
1 files changed, 11 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index 251dd24..6809e11 100644
--- a/go.mod
+++ b/go.mod
@@ -1,9 +1,17 @@
module github.com/majewsky/schwift
-go 1.16
+go 1.20
require (
- github.com/gophercloud/gophercloud v1.0.0
- github.com/gophercloud/utils v0.0.0-20220927104426-4113af8d2663
+ github.com/gophercloud/gophercloud v1.7.0
+ github.com/gophercloud/utils v0.0.0-20231010081019-80377eca5d56
github.com/jpillora/longestcommon v0.0.0-20161227235612-adb9d91ee629
)
+
+require (
+ github.com/hashicorp/go-uuid v1.0.3 // indirect
+ github.com/mitchellh/go-homedir v1.1.0 // indirect
+ golang.org/x/sys v0.13.0 // indirect
+ golang.org/x/text v0.13.0 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+)