fix(rust): remove unused dependencies from loader and lib

This commit is contained in:
Will Lillis 2026-03-02 00:11:26 -05:00 committed by Christian Clason
parent 2f747dc9b1
commit b27de1038f
3 changed files with 1 additions and 3 deletions

BIN
Cargo.lock generated

Binary file not shown.

View file

@ -30,7 +30,6 @@ wasm = [ "tree-sitter/wasm" ]
[dependencies]
cc.workspace = true
etcetera.workspace = true
indoc.workspace = true
libloading.workspace = true
log.workspace = true
once_cell.workspace = true

View file

@ -38,12 +38,11 @@ workspace = true
[features]
default = [ "std" ]
std = [ "regex/std", "regex/perf", "regex-syntax/unicode" ]
std = [ "regex/std", "regex/perf" ]
wasm = [ "std", "wasmtime-c-api" ]
[dependencies]
regex = { default-features = false, features = [ "unicode" ], version = "1.12.3" }
regex-syntax = { default-features = false, version = "0.8.9" }
streaming-iterator = "0.1.9"
tree-sitter-language.workspace = true