Skip to content

Commit

Permalink
fix: require go 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
vknabel committed Jun 14, 2022
1 parent 2b160f7 commit d0d79ba
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1,918 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18

- name: Build
run: go build -v ./...
Expand Down
18 changes: 16 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
module github.com/vknabel/lithia

go 1.16
go 1.18

require (
github.com/muesli/coral v1.0.0
github.com/petermattis/goid v0.0.0-20220526132513-07eaf5d0b9f4 // indirect
github.com/smacker/go-tree-sitter v0.0.0-20220611151427-2c4b54ed41fe
github.com/tliron/glsp v0.1.1
github.com/tliron/kutil v0.1.60
github.com/vknabel/tree-sitter-lithia v0.2.1
)

require (
github.com/gorilla/websocket v1.5.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/petermattis/goid v0.0.0-20220526132513-07eaf5d0b9f4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/sourcegraph/jsonrpc2 v0.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/zchee/color/v2 v2.0.6 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
)
Loading

0 comments on commit d0d79ba

Please sign in to comment.