From fe66cf4fdb67394123e09245eead132934493037 Mon Sep 17 00:00:00 2001 From: Shye Date: Wed, 25 Jun 2025 15:18:26 +0000 Subject: [PATCH] Add Cargo.toml --- Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..18f9424 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "tree-sitter-zedee" +description = "Zedee grammar for the tree-sitter parsing library" +version = "0.2.0" +readme = "bindings/rust/README.md" +keywords = ["incremental", "parsing", "zedee"] +categories = ["parsing", "text-editors"] +homepage = "https://git.deadrobots.me/DeadRobots//tree-sitter-zedee" +repository = "https://git.deadrobots.me/DeadRobots//tree-sitter-zedee" +edition = "2025" +publish = false +license = "Apache-2.0" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "0.20.8" + +[build-dependencies] +cc = "*" \ No newline at end of file