rust: Extract runtime language detection into separate crate
This patch adds a new `tree-sitter-loader` crate, which holds the CLI's logic for finding and building local grammar definitions at runtime. This allows other command-line tools to use this logic too!
This commit is contained in:
parent
162ce789bc
commit
66c30648c2
14 changed files with 117 additions and 62 deletions
|
|
@ -1,9 +1,9 @@
|
|||
use crate::loader::Loader;
|
||||
use lazy_static::lazy_static;
|
||||
use std::fs;
|
||||
use std::path::{Path, PathBuf};
|
||||
use tree_sitter::Language;
|
||||
use tree_sitter_highlight::HighlightConfiguration;
|
||||
use tree_sitter_loader::Loader;
|
||||
|
||||
include!("./dirs.rs");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue