try rust parser

This commit is contained in:
2025-08-25 22:03:21 +02:00
parent a8bf55882e
commit 5a61161992
5 changed files with 425 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[package]
name = "tcl_parser"
version = "0.1.0"
edition = "2024"
[dependencies]
tree-sitter = "0.25.8"
tree-sitter-tcl = { git = "https://github.com/tree-sitter-grammars/tree-sitter-tcl" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
[lib]
name = "tcl_parser"
path = "src/lib.rs"