chore: use workspace-resolved versions, drop replace directives
Forge module versions now use main branch resolution via ~/Code/go.work workspace. Removes 5 local replace directives — the central go.work handles all cross-repo resolution during development. Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
a3e9a1e035
commit
334aa8c621
1 changed files with 5 additions and 12 deletions
17
go.mod
17
go.mod
|
|
@ -3,25 +3,18 @@ module forge.lthn.ai/lthn/lem
|
|||
go 1.25.6
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go v0.0.0-20260221191103-d091fa62023f
|
||||
forge.lthn.ai/core/go-i18n v0.0.0-20260220151120-0d8463c8845a
|
||||
forge.lthn.ai/core/go-ml v0.0.0-20260222174836-950b67d25dd8
|
||||
forge.lthn.ai/core/go-mlx v0.0.0-20260221191404-2292557fd65f
|
||||
forge.lthn.ai/core/go main
|
||||
forge.lthn.ai/core/go-i18n main
|
||||
forge.lthn.ai/core/go-ml main
|
||||
forge.lthn.ai/core/go-mlx main
|
||||
github.com/marcboeker/go-duckdb v1.8.5
|
||||
github.com/parquet-go/parquet-go v0.27.0
|
||||
gopkg.in/yaml.v3 v3.0.1
|
||||
)
|
||||
|
||||
replace (
|
||||
forge.lthn.ai/core/go => /Users/snider/Code/host-uk/core
|
||||
forge.lthn.ai/core/go-i18n => /Users/snider/Code/go-i18n
|
||||
forge.lthn.ai/core/go-inference => /Users/snider/Code/go-inference
|
||||
forge.lthn.ai/core/go-ml => /Users/snider/Code/go-ml
|
||||
forge.lthn.ai/core/go-mlx => /Users/snider/Code/go-mlx
|
||||
)
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go-inference v0.0.0-20260220151119-1576f744d105 // indirect
|
||||
forge.lthn.ai/core/go-inference main // indirect
|
||||
github.com/andybalholm/brotli v1.2.0 // indirect
|
||||
github.com/apache/arrow-go/v18 v18.5.1 // indirect
|
||||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue