-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 948 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
[package]
name = "hantu"
authors = ["Chris K. <[email protected]>"]
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"
[dependencies]
executor = { path = "src/libs/executor/" }
prng = { path = "src/libs/prng/" }
errors = { path = "src/libs/errors/" }
# external dependencies
core_affinity = "0.8.0"
clap = { version = "4.2.7", features = ["derive"] }
grammar_mutator = { path = "src/libs/mutation_engine/src/custom_mutators/grammar_mutator" }
[profile.release]
panic = "abort"
opt-level = 2
lto = "thin"
[profile.dev]
debug = true
panic = "unwind"
[profile.instrument]
inherits = "release"
debug = 2
[workspace]
members = [
"src/libs/prng/benches",
"src/libs/mutation_engine/src/custom_mutators/grammar_mutator",
"src/libs/mutation_engine/src/custom_mutators/ni",
"src/libs/prng",
"src/libs/magic",
"src/libs/mutation_engine",
"src/libs/test_case",
"src/libs/errors",
"src/libs/utils",
"src/libs/executor",
]