From 3640ce9324a4d574b4c4f3cfff348ca8dffbef2c Mon Sep 17 00:00:00 2001 From: prosolis <5590409+prosolis@users.noreply.github.com> Date: Mon, 27 Jul 2026 10:02:17 -0700 Subject: [PATCH] Depend on dreamdict as a published module, not a local path The dev `replace ../dreamdict` was only ever a bridge for building against uncommitted upstream work. It cannot survive the Docker build, whose context is this repo alone, so it comes out now that the two dreamdict commits are pushed. Claude-Session: https://claude.ai/code/session_016y6gyuHkQXPiEuW8RGQyua --- go.mod | 4 +--- go.sum | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 886330d..e3686ef 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/coreos/go-oidc/v3 v3.20.0 github.com/go-chi/chi/v5 v5.3.0 github.com/go-jose/go-jose/v4 v4.1.4 - github.com/prosolis/dreamdict v0.0.0-00010101000000-000000000000 + github.com/prosolis/dreamdict v0.0.0-20260727163219-302a39d5c768 golang.org/x/oauth2 v0.36.0 modernc.org/sqlite v1.53.0 ) @@ -22,5 +22,3 @@ require ( modernc.org/mathutil v1.7.1 // indirect modernc.org/memory v1.11.0 // indirect ) - -replace github.com/prosolis/dreamdict => ../dreamdict diff --git a/go.sum b/go.sum index e7a48b9..95c8722 100644 --- a/go.sum +++ b/go.sum @@ -16,6 +16,8 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/ncruces/go-strftime v1.0.0 h1:HMFp8mLCTPp341M/ZnA4qaf7ZlsbTc+miZjCLOFAw7w= github.com/ncruces/go-strftime v1.0.0/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls= +github.com/prosolis/dreamdict v0.0.0-20260727163219-302a39d5c768 h1:+7NP78QlAVcXMviA23cMBtxwvYwDhADnABa3JBhbApI= +github.com/prosolis/dreamdict v0.0.0-20260727163219-302a39d5c768/go.mod h1:s4D+Q++6Qjq8X7/ZXEMStGXA6tScm4GadFo0+HF4BHY= github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= golang.org/x/mod v0.36.0 h1:JJjpVx6myfUsUdAzZuOSTTmRE0PfZeNWzzvKrP7amb4=