[package]
edition = "2024"
rust-version = "1.85"
name = "santh-writ"
version = "0.1.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CPU symbolic execution + exploit witness construction. Takes a weir-produced source→sink path and returns a concrete input that drives execution to the sink. Z3-backed."
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"symbolic-execution",
"smt",
"exploit",
"witness",
"security",
]
categories = [
"development-tools",
"compilers",
]
license = "MIT"
repository = "https://github.com/santhreal/santh-writ"
[features]
default = ["z3-backend"]
z3-backend = ["dep:z3"]
[lib]
name = "writ"
path = "src/lib.rs"
[[test]]
name = "sink_payloads_extended"
path = "tests/sink_payloads_extended.rs"
[[test]]
name = "witness_types"
path = "tests/witness_types.rs"
[dependencies.vyre]
version = "0.7.0"
default-features = false
[dependencies.vyre-foundation]
version = "0.7.0"
[dependencies.weir]
version = "0.1"
package = "weirflow"
[dependencies.z3]
version = "0.13"
optional = true