-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
29 lines (26 loc) · 914 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
module github.com/tilt-dev/starlark-lsp
go 1.22
require (
github.com/davecgh/go-spew v1.1.1
github.com/pkg/errors v0.9.1
github.com/smacker/go-tree-sitter v0.0.0-20220209044044-0d3022e933c3
github.com/spf13/cobra v1.3.0
github.com/stretchr/testify v1.7.0
go.lsp.dev/jsonrpc2 v0.9.0
go.lsp.dev/protocol v0.11.2
go.lsp.dev/uri v0.3.0
go.uber.org/zap v1.20.0
golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd
)
require (
github.com/benbjohnson/clock v1.1.0 // indirect
github.com/francoispqt/gojay v1.2.13 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/segmentio/encoding v0.2.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.lsp.dev/pkg v0.0.0-20210323044036-f7deec69b52e // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)