mirror of
https://github.com/gogrlx/grlx-lsp.git
synced 2026-04-02 03:18:47 -07:00
- Add completion_test.go: tests for top-level, ingredient.method, property, requisite type, and step ID completions - Add hover_test.go: tests for markdown generation, word extraction, and edge cases - Add diagnostics_test.go: tests for nil recipe, parse errors, empty ingredient, requisite validation, range helpers - Update all dependencies to latest versions - Add target/ to .gitignore (stale Rust build artifacts)
20 lines
464 B
Modula-2
20 lines
464 B
Modula-2
module github.com/gogrlx/grlx-lsp
|
|
|
|
go 1.26.1
|
|
|
|
require (
|
|
go.lsp.dev/jsonrpc2 v0.10.0
|
|
go.lsp.dev/protocol v0.12.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/segmentio/asm v1.2.1 // indirect
|
|
github.com/segmentio/encoding v0.5.3 // indirect
|
|
go.lsp.dev/pkg v0.0.0-20210717090340-384b27a52fb2 // indirect
|
|
go.lsp.dev/uri v0.3.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.1 // indirect
|
|
golang.org/x/sys v0.42.0 // indirect
|
|
)
|