julihoh 704830a501
Documentation and Refactors for Concolic (#243)
* document symcc_runtime

* rename serialization format expressions to be more concise

* authorship notes

* document dump_constraints

* document smoke test

* tests for serialization format and refactoring

* remove unused bswap message

* remove obselete SymExpr::End

* document and refactor serialization format

* fmt

* more missing docs

* typos

* clippy
2021-08-05 15:01:14 +02:00

24 lines
645 B
TOML

[package]
name = "example_runtime"
version = "0.1.0"
edition = "2018"
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" }