Dongjia "toka" Zhang 78060ea308
0.11.2 (#1735)
2023-12-18 14:33:14 +01:00

24 lines
646 B
TOML

[package]
name = "example_runtime"
version = "0.11.2"
edition = "2021"
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]
[lib]
# the runtime needs to be a shared object -> cdylib
crate-type = ["cdylib"]
# this is necessary for SymCC to find the runtime.
name = "SymRuntime"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
# this is somewhat important to ensure the runtime does not unwind into the target program.
panic = "abort"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
symcc_runtime = { path = "../../../libafl_concolic/symcc_runtime" }