
- With this patch we remove some deprecated options from the config struct without introducing any breaking changes (yet). In further patches we might want to switch to an enirely new config struct to get rid of all technical debts and make the code more readable. - Runtime options are configurable options that can be changed via the API before the fuzz runner is spawned. These options can not be set via a config file.
13 lines
285 B
TOML
13 lines
285 B
TOML
[package]
|
|
name = "config"
|
|
version = "0.1.0"
|
|
authors = ["coco <cornelius@hexgolems.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde ="1.0.104"
|
|
serde_derive ="1.0.104"
|
|
ron="0.6.2"
|
|
libc = "0.2" |