
* Implement `Send` for `Shm` it is safe because we take the ownership of the inner map pointer. Only potential violation is deref the underlying pointer but that’s already unsafe. Therefore, the properties of Send still hold within the safe world. * Bump 1.87 * use std::io::pipe so that they are `Send` * clippy * upgrade * Avoid phantomdata to make ForkserverExecutor !Send * Missing gates * Fix nostd * bump in Dockerfile * use dtolnay/rust-toolchain@stable instead * setup latest toolchain on non Linux * Fix typo
32 lines
786 B
TOML
32 lines
786 B
TOML
[package]
|
|
name = "runtime_test"
|
|
version.workspace = true
|
|
edition = "2024"
|
|
rust-version = "1.87"
|
|
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]
|
|
description = "Runtime test of LibAFL fuzzing with symbolic execution"
|
|
documentation = "https://docs.rs/libafl"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "libafl", "symbolic", "symcc", "symqemu"]
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "SymRuntime"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
symcc_runtime = { path = "../../symcc_runtime" }
|
|
|
|
[lints]
|
|
workspace = true
|