tree-sitter-rust

Crates.iotree-sitter-rust
lib.rstree-sitter-rust
version0.23.1
sourcesrc
created_at2021-03-04 17:56:42.718422
updated_at2024-11-10 05:44:49.809239
descriptionRust grammar for tree-sitter
homepage
repositoryhttps://github.com/tree-sitter/tree-sitter-rust
max_upload_size
id363814
size6,461,732
Douglas Creager (dcreager)

documentation

README

tree-sitter-rust

CI discord matrix crates npm pypi

Rust grammar for tree-sitter.

Features

  • Speed — When initially parsing a file, tree-sitter-rust takes around two to three times as long as rustc's hand-written parser.

    $ wc -l examples/ast.rs
      2157 examples/ast.rs
    
    $ rustc -Z unpretty=ast-tree -Z time-passes examples/ast.rs | head -n0
      time:   0.002; rss:   55MB ->   60MB (   +5MB)  parse_crate
    
    $ tree-sitter parse examples/ast.rs --quiet --time
      examples/ast.rs    6.48 ms        9908 bytes/ms
    

    But if you edit the file after parsing it, tree-sitter can generally update the previous existing syntax tree to reflect your edit in less than a millisecond, thanks to its incremental parsing system.

References

Commit count: 439

cargo fmt