Skip to content

Commit

Permalink
fix: html parser switch to c
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev authored Oct 13, 2023
1 parent 650087c commit 244aa14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ jobs:
if: contains(matrix.os, 'ubuntu')
run: sudo apt-get update -y

- name: Install musl
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo ln -s /bin/g++ /bin/musl-g++

- name: Install AArch64 target toolchain
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-arm64-cross g++-aarch64-linux-gnu
Expand Down
5 changes: 2 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/llm-ls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tree-sitter-c-sharp = "0.20"
tree-sitter-elixir = "0.1"
tree-sitter-erlang = "0.2"
tree-sitter-go = "0.20"
tree-sitter-html = "0.19"
tree-sitter-html = { git = "https://github.com/tree-sitter/tree-sitter-html.git", rev = "d742025fa2d8e6100f134a6ea990443aa1f074b3", version = "0.20.0" }
tree-sitter-java = "0.20"
tree-sitter-javascript = "0.20"
tree-sitter-json = "0.20"
Expand Down

0 comments on commit 244aa14

Please sign in to comment.