An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
dependabot[bot] 7171ecd4ad build(deps): bump the cargo group with 4 updates
Bumps the cargo group with 4 updates: [cc](https://github.com/rust-lang/cc-rs), [indexmap](https://github.com/indexmap-rs/indexmap), [libloading](https://github.com/nagisa/rust_libloading) and [walkdir](https://github.com/BurntSushi/walkdir).


Updates `cc` from 1.0.88 to 1.0.89
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.88...1.0.89)

Updates `indexmap` from 2.2.4 to 2.2.5
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](https://github.com/indexmap-rs/indexmap/compare/2.2.4...2.2.5)

Updates `libloading` from 0.8.1 to 0.8.2
- [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.1...0.8.2)

Updates `walkdir` from 2.4.0 to 2.5.0
- [Commits](https://github.com/BurntSushi/walkdir/compare/2.4.0...2.5.0)

---
updated-dependencies:
- dependency-name: cc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libloading
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: walkdir
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-06 01:27:41 -05:00
.cargo feat: add xtasks to assist with bumping crates 2024-02-25 13:40:03 -05:00
.github ci(dependabot): update weekly instead of daily 2024-02-29 14:27:08 +01:00
cli fix(generate): extern allocator functions for the template don't need to be "exported" 2024-03-05 11:19:06 -05:00
docs docs: Add Ohm language parser 2024-02-29 19:13:53 +01:00
highlight Use workspace dependencies for internal crates 2024-02-25 11:14:29 -08:00
lib fix: don't use __declspec(dllexport) on windows 2024-03-04 13:23:06 -05:00
script build: use c11 everywhere 2024-02-27 15:54:38 -05:00
tags Use workspace dependencies for internal crates 2024-02-25 11:14:29 -08:00
test docs: small fixes 2024-02-16 00:15:49 +01:00
xtask style: clippy lints 2024-02-29 02:17:30 -05:00
.editorconfig build: add editorconfig 2024-02-11 13:03:58 +01:00
.gitattributes fix: specify eof should be lf for windows cicd 2024-01-25 20:12:36 -05:00
.gitignore fix: make install should install files with default perms 2023-08-21 06:19:49 +03:00
build.zig build: use c11 everywhere 2024-02-27 15:54:38 -05:00
Cargo.lock build(deps): bump the cargo group with 4 updates 2024-03-06 01:27:41 -05:00
Cargo.toml build(deps): bump the cargo group with 4 updates 2024-03-06 01:27:41 -05:00
CHANGELOG.md build: improve changelog settings 2024-02-23 11:29:18 +01:00
CONTRIBUTING.md build: remove symbolic links from repository 2024-02-12 14:16:12 +01:00
FUNDING.json chore: add FUNDING.json 2023-11-08 00:08:07 -05:00
LICENSE chore: fix years in the license file 2023-04-16 23:39:08 +03:00
Makefile build: add uninstall command 2024-02-27 15:54:38 -05:00
Package.swift build(swift): move 'cLanguageStandard' behind 'targets' 2024-02-28 05:49:12 -05:00
README.md docs: various fixes 2024-02-08 00:08:59 +01:00
tree-sitter.pc.in Add a simple Makefile-based build system. 2020-04-21 23:49:19 -04:00

tree-sitter

DOI

Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. Tree-sitter aims to be:

  • General enough to parse any programming language
  • Fast enough to parse on every keystroke in a text editor
  • Robust enough to provide useful results even in the presence of syntax errors
  • Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application