From f2b97e4ab9feb0a49cd1dfdbd1f3a4d7a4f64c38 Mon Sep 17 00:00:00 2001 From: kami Date: Mon, 6 Jul 2026 12:04:12 +0400 Subject: [PATCH] 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 --- go.mod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 95da339..0a7fbdc 100644 --- a/go.mod +++ b/go.mod @@ -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