summaryrefslogtreecommitdiffhomepage
path: root/go.mod
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-06-06 02:49:26 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-06-06 02:49:26 +0200
commit746a09a5854b9ce17e40caead51e1a42c2721bb1 (patch)
tree474d9a11c3b82196577b61333dffe3c94c5258fb /go.mod
parentefa0bd7df5f51d47c50efc446fd2f32996ab79be (diff)
Unvendor dependencies
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod18
1 files changed, 12 insertions, 6 deletions
diff --git a/go.mod b/go.mod
index 53d5d8c..89c5b16 100644
--- a/go.mod
+++ b/go.mod
@@ -1,12 +1,18 @@
module git.thomasvoss.com/euro-cash.eu
-go 1.23
+go 1.24
-require golang.org/x/text v0.17.0
-
-require golang.org/x/tools v0.24.0
+require (
+ golang.org/x/text v0.26.0
+ golang.org/x/tools v0.34.0
+)
require (
- golang.org/x/mod v0.20.0 // indirect
- golang.org/x/sync v0.8.0 // indirect
+ golang.org/x/mod v0.25.0 // indirect
+ golang.org/x/sync v0.15.0 // indirect
+)
+
+tool (
+ git.thomasvoss.com/euro-cash.eu
+ golang.org/x/text/cmd/gotext
)