chore: use workspace-resolved versions, drop replace directives
Forge module versions now use main branch resolution via ~/Code/go.work workspace. Removes 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
a122b2a2ad
commit
a8774cf0ae
1 changed files with 2 additions and 6 deletions
8
go.mod
8
go.mod
|
|
@ -2,17 +2,13 @@ module forge.lthn.ai/core/go-html
|
|||
|
||||
go 1.25.5
|
||||
|
||||
replace forge.lthn.ai/core/go-i18n => ../go-i18n
|
||||
|
||||
replace forge.lthn.ai/core/go-inference => ../go-inference
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go-i18n v0.0.0-00010101000000-000000000000
|
||||
forge.lthn.ai/core/go-i18n main
|
||||
github.com/stretchr/testify v1.11.1
|
||||
)
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go-inference v0.0.0-00010101000000-000000000000 // indirect
|
||||
forge.lthn.ai/core/go-inference main // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
golang.org/x/text v0.33.0 // indirect
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue