-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 798 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
34
[package]
name = "roughenough-fuzz"
version = "0.2.0"
repository = "https://github.com/int08h/roughenough-fuzz"
authors = ["Stuart Stock <stuart@int08h.com>"]
license = "Apache-2.0"
description = "Fuzzing for Roughenough: a Rust implementation of the Roughtime secure time sync protocol"
readme = "README.md"
keywords = ["roughtime", "afl", "fuzzing"]
[dependencies]
afl = "0.11"
honggfuzz = "0.5"
log = "0.4"
simple_logger = "0.5"
mio = "0.6"
hex = "*"
roughenough = { git = "https://github.com/int08h/roughenough", branch = "master" }
[[bin]]
name = "hfuzz_target"
path = "src/hfuzz_target.rs"
[[bin]]
name = "afl_target"
path = "src/afl_target.rs"
[[bin]]
name = "afl_server_target"
path = "src/afl_server_target.rs"
[[bin]]
name = "afl_envelope_target"
path = "src/afl_envelope_target.rs"