forked from quic/AFLTriage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 804 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
[package]
name = "afltriage"
version = "1.0.0"
authors = ["Grant Hernandez <[email protected]>"]
description = "Quickly triage and summarize crashing testcases from AFL"
edition = "2018"
[profile.release]
lto = true
[dependencies]
clap = "2.33.3"
rayon = "1.5.0"
lazy_static = "1.4.0"
indicatif = { version="0.15.0", features=["rayon"] }
serde = { version="1.0", features=["derive", "rc"] }
strum = { version = "0.20", features = ["derive"] }
shlex = "1"
serde_json = "1.0"
regex = "1"
md5 = "0.7.0"
libc = "0.2"
async-process = "1"
futures-lite = "1"
smol-timeout = "0"
async-io = "1"
tempfile = "3"
which = "4"
is_executable = "1"
num_enum = "0"
num_cpus = "1.0"
log = "0"
signal-hook = "0"
env_logger = { version = "0", features = ["termcolor"] }
[dev-dependencies]
pretty_assertions = "1"