-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathCargo.toml
51 lines (41 loc) · 1018 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
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "weggli"
version = "0.2.5"
authors = ["fwilhelm"]
edition = "2018"
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."
repository = "https://github.com/weggli-rs/weggli"
rust-version = "1.63.0"
[features]
python = ["pyo3"]
[lib]
crate-type = ["rlib", "dylib"]
[[bin]]
name = "weggli"
[dependencies]
tree-sitter = "0.20.9"
log = "0.4.17"
clap = "2.34.0"
walkdir = "2.3.2"
rayon = "1.5.3"
colored = "2.0.0"
simplelog = "0.12.0"
regex = "1"
rustc-hash = "1.1.0"
thread_local = "1.1"
[dependencies.pyo3]
version = "0.17.1"
features = ["extension-module"]
optional = true
[target.'cfg(target_family = "unix")'.dependencies]
nix = "0.25.0"
[build-dependencies]
cc = "1.0.83"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
assert_cmd = "2.0.0"
predicates = "1"
[[bench]]
name = "examples"
harness = false