From 0bbb98ab2fba6b3e97e1420d07e6384167c407b5 Mon Sep 17 00:00:00 2001 From: jdonszelmann Date: Mon, 30 Oct 2023 17:41:43 +0100 Subject: [PATCH] remove tree-sitter feature from stack-graphs Co-authored-by: Terts Diepraam --- stack-graphs/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stack-graphs/Cargo.toml b/stack-graphs/Cargo.toml index bc08b1d82..e7acaac06 100644 --- a/stack-graphs/Cargo.toml +++ b/stack-graphs/Cargo.toml @@ -13,13 +13,12 @@ authors = [ edition = "2018" [features] -default = ["tree-sitter"] +default = [] bincode = ["dep:bincode", "lsp-positions/bincode"] copious-debugging = [] serde = ["dep:serde", "serde_with", "lsp-positions/serde"] storage = ["bincode", "rusqlite"] visualization = ["serde", "serde_json"] -tree-sitter = ["lsp-positions/tree-sitter"] [lib] # All of our tests are in the tests/it "integration" test executable.