Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build(deps): bump grammars/tree-sitter-toml from 16a30c8 to ae4cdb5 #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grammars/tree-sitter-toml
Submodule tree-sitter-toml updated 61 files
+5 −29 .editorconfig
+6 −10 .gitattributes
+0 −111 .github/workflows/ci.yml
+0 −23 .github/workflows/publish.yml
+3 −38 .gitignore
+4 −0 .gitmodules
+0 −0 .npmignore
+13 −0 .travis.yml
+95 −0 CHANGELOG.md
+59 −0 Cargo.lock
+16 −15 Cargo.toml
+0 −112 Makefile
+0 −46 Package.swift
+35 −15 README.md
+6 −17 binding.gyp
+0 −16 bindings/c/tree-sitter-toml.h
+0 −11 bindings/c/tree-sitter-toml.pc.in
+0 −13 bindings/go/binding.go
+0 −15 bindings/go/binding_test.go
+0 −5 bindings/go/go.mod
+22 −14 bindings/node/binding.cc
+0 −28 bindings/node/index.d.ts
+15 −3 bindings/node/index.js
+0 −5 bindings/python/tree_sitter_toml/__init__.py
+0 −1 bindings/python/tree_sitter_toml/__init__.pyi
+0 −27 bindings/python/tree_sitter_toml/binding.c
+39 −0 bindings/rust/README.md
+10 −13 bindings/rust/build.rs
+33 −15 bindings/rust/lib.rs
+0 −16 bindings/swift/TreeSitterTOML/toml.h
+296 −0 corpus/custom.txt
+19 −0 corpus/issues.txt
+1,505 −0 corpus/spec.txt
+21 −0 docs/assets/tree-sitter-playground-0.19.3/LICENSE
+469 −0 docs/assets/tree-sitter-playground-0.19.3/playground.js
+1 −0 docs/assets/tree-sitter-playground-0.19.3/style.css
+ docs/assets/tree-sitter-toml-0.5.1/tree-sitter-toml.wasm
+21 −0 docs/assets/web-tree-sitter-0.19.3/LICENSE
+1 −0 docs/assets/web-tree-sitter-0.19.3/tree-sitter.js
+ docs/assets/web-tree-sitter-0.19.3/tree-sitter.wasm
+162 −0 docs/index.html
+33 −0 examples/toml-lang.toml
+14 −6 grammar.js
+0 −374 package-lock.json
+35 −51 package.json
+0 −37 pyproject.toml
+16 −36 queries/highlights.scm
+15 −0 scripts/generate-playground.js
+4 −0 scripts/setup-tree-sitter.sh
+0 −60 setup.py
+6 −5 src/grammar.json
+381 −544 src/parser.c
+16 −24 src/scanner.c
+0 −54 src/tree_sitter/alloc.h
+0 −290 src/tree_sitter/array.h
+15 −57 src/tree_sitter/parser.h
+0 −355 test/corpus/tour.txt
+0 −39 test/highlight/sample.toml
+1,031 −0 toml-spec/spec.md
+1 −0 tree-sitter
+1,326 −0 yarn.lock
Loading