3 releases (breaking)
0.3.0 | May 27, 2024 |
---|---|
0.2.1 | Jun 30, 2023 |
0.2.0 |
|
0.1.0 | Jun 22, 2023 |
#346 in Text editors
29KB
852 lines
tree-sitter-deb822
Debian 822 configuration grammar for tree-sitter.
References
lib.rs
:
This crate provides deb822 language support for the tree-sitter parsing library.
Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:
let code = "Key: Value\n";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_deb822::language()).expect("Error loading deb822 grammar");
let tree = parser.parse(code, None).unwrap();
Dependencies
~2.8–4MB
~74K SLoC