-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 818 Bytes
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
[package]
name = "parascope"
version = "0.3.0"
authors = ["Sam L. Thomas <s@ghost.sh>"]
description = "Weggli ruleset scanner for source code and binaries"
license = "MIT"
documentation = "https://xv.ax/parascope"
keywords = ["ida", "ida-pro", "idalib", "vulnerability", "weggli"]
categories = ["security"]
repository = "https://github.com/xorpse/parascope.git"
readme = "./README.md"
edition = "2024"
build = "build.rs"
exclude = ["assets", "rules", "tests", "python", "plugin"]
[[bin]]
name = "parascope"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
idalib = "0.7"
fugue-mptp = "0.3"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tabled = "0.16"
weggli-ruleset = "0.1.5"
wegglix = "0.2"
[build-dependencies]
idalib-build = "0.7"