-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
32 lines (28 loc) · 911 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module github.com/carlverge/jsonnet-lsp
go 1.19
require (
github.com/stretchr/testify v1.7.0
go.lsp.dev/jsonrpc2 v0.10.0
go.lsp.dev/uri v0.3.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
go.lsp.dev/pkg v0.0.0-20210717090340-384b27a52fb2 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)
require (
github.com/google/go-jsonnet v0.20.0
github.com/hexops/gotextdiff v1.0.3
github.com/segmentio/asm v1.1.3 // indirect
github.com/segmentio/encoding v0.3.4 // indirect
go.lsp.dev/protocol v0.12.0
golang.org/x/sys v0.1.0 // indirect
)