-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
45 lines (41 loc) · 1.07 KB
/
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
[package]
name = "siderophile"
version = "0.2.1"
authors = [
"Michael Rosenberg <[email protected]>",
"Claudia Richoux <[email protected]>",
]
edition = "2021"
license = "AGPL-3.0"
description = "Find the ideal fuzz targets in a Rust codebase"
repository = "https://github.com/trailofbits/siderophile"
categories = ["command-line-utilities", "compilers"]
keywords = ["cli", "llvm", "fuzzing", "security"]
[package.metadata.release]
dev-version = false
publish = false # handled by GitHub Actions
push = true
[lib]
name = "siderophile_callgraph"
path = "src/lib.rs"
[[bin]]
name = "siderophile"
path = "src/main.rs"
[dependencies]
anyhow = "1"
cargo = "0.66.0"
cargo-util = "0.2.4"
env_logger = "0.10"
glob = "0.3"
llvm-ir = { git = "https://github.com/cdisselkoen/llvm-ir", rev = "d2b642ce2562155cd04a645473ca3701c7486dbd", features = [
"llvm-17",
] }
log = "0.4"
quote = "1.0.29"
regex = "1"
rustc-demangle = "0.1"
rustc_version = "0.4.0"
structopt = "0.3"
syn = { version = "1.0", features = ["full", "visit"] }
tempfile = "3.6.0"
walkdir = "2.3"