2 unstable releases
0.2.0 | Oct 25, 2024 |
---|---|
0.1.0 | Oct 24, 2024 |
#163 in Text editors
291 downloads per month
Used in protols
275KB
10K
SLoC
tree-sitter-proto
Protocol buffer grammer for tree-sitter.
✨ Features
- ✅ Basic Proto2 support
- ✅ Proto3 support
- ✅ Support for editions
Special Thanks
Special thanks to the following people for their amazing work in this grammer.
lib.rs
:
This crate provides Proto language support for the tree-sitter parsing library.
Typically, you will use the [LANGUAGE][] constant to add this language to a tree-sitter Parser, and then use the parser to parse some code:
let code = r#"
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_proto::LANGUAGE;
parser
.set_language(&language.into())
.expect("Error loading Proto parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());
Dependencies
~225KB