forked from weggli-rs/weggli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (33 loc) · 903 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "weggli-enhance"
version = "0.4.4"
authors = ["LordCasser"]
edition = "2021"
license = "Apache-2.0"
description = "weggli is a fast and robust semantic search tool for C and C++ codebases. It is designed to help security researchers identify interesting functionality in large codebases."
[[bin]]
name = "weggli-enhance"
[dependencies]
tree-sitter = "0.22.6"
tree-sitter-c = "0.21.4"
log = "0.4.21"
clap = "2.34.0"
walkdir = "2.5.0"
rayon = "1.10.0"
colored = "2.1.0"
simplelog = "0.12.2"
fancy-regex = "0.13.0"
rustc-hash = "1.1.0"
thread_local = "1.1.8"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde-sarif = "0.4.2"
serde_json = "1.0"
[target.'cfg(target_family = "unix")'.dependencies]
nix = "0.25.0"
[build-dependencies]
cc = "*"
[dev-dependencies]
criterion = {version = "0.3",features = ["html_reports"]}
assert_cmd = "2.0.0"
predicates = "1"