diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-06-06 02:49:26 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-06-06 02:49:26 +0200 |
commit | 746a09a5854b9ce17e40caead51e1a42c2721bb1 (patch) | |
tree | 474d9a11c3b82196577b61333dffe3c94c5258fb /go.mod | |
parent | efa0bd7df5f51d47c50efc446fd2f32996ab79be (diff) |
Unvendor dependencies
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -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 ) |