diff options
| author | 2026-03-30 02:19:08 +0700 | |
|---|---|---|
| committer | 2026-03-30 02:19:08 +0700 | |
| commit | 9effc519349612582a14f0402564725678f51d7f (patch) | |
| tree | 20e9f7435d2b27e377adb786147c74b75114e7ee /go.mod | |
| parent | ebfe3540c333ae7fa3effb410a20e5764627e307 (diff) | |
| download | thumbnail-generator-9effc519349612582a14f0402564725678f51d7f.tar.gz thumbnail-generator-9effc519349612582a14f0402564725678f51d7f.zip | |
fix: read input with readall
feat: update dependencies and go to 1.26
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -1,21 +1,20 @@ module github.com/SayaAndy/saya-today-thumbnail-generator -go 1.25 +go 1.26.0 require ( github.com/Backblaze/blazer v0.7.2 - github.com/go-playground/validator/v10 v10.27.0 + github.com/go-playground/validator/v10 v10.30.1 github.com/kolesa-team/go-webp v1.0.5 - golang.org/x/image v0.29.0 - golang.org/x/sys v0.30.0 + golang.org/x/image v0.38.0 + golang.org/x/sys v0.42.0 ) require ( - github.com/gabriel-vasile/mimetype v1.4.8 // indirect + github.com/gabriel-vasile/mimetype v1.4.13 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/leodido/go-urn v1.4.0 // indirect - golang.org/x/crypto v0.33.0 // indirect - golang.org/x/net v0.34.0 // indirect - golang.org/x/text v0.27.0 // indirect + golang.org/x/crypto v0.49.0 // indirect + golang.org/x/text v0.35.0 // indirect ) |