go.mod: mark onnxruntime_go, websocket, cron as direct

All three are imported by non-test code (router/onnxembedder.go,
mavweb/main.go, store/reminders.go) but were labeled // indirect. `go mod
tidy` can't run in this repo (it walks the vendored deps/go toolchain tree
and errors), so correct the labels by hand.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
kami
2026-07-06 12:04:12 +04:00
parent 4793d77fa9
commit f2b97e4ab9
+3 -3
View File
@@ -3,19 +3,19 @@ module github.com/kami/maven
go 1.23
require (
github.com/coder/websocket v1.8.12
github.com/robfig/cron/v3 v3.0.1
github.com/yalue/onnxruntime_go v1.31.0
golang.org/x/sys v0.22.0
modernc.org/sqlite v1.34.5
)
require (
github.com/coder/websocket v1.8.12 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/yalue/onnxruntime_go v1.31.0 // indirect
golang.org/x/text v0.3.0 // indirect
modernc.org/libc v1.55.3 // indirect
modernc.org/mathutil v1.6.0 // indirect