
* update clap, remove unused deps * update grammartek * update pyo3 * update pyo3 * undid clap update * not changing nyx * updated deps * Update more deps, fixes * not needed clippy * fix windows * try to enable deprecated pyproto for pyo3 * unused * moving some things to clap4 after all * initial move to clap 4 * fix clap * more clap4, removed accidental file * fixes, fmt * fix * all fix no play * fix
21 lines
536 B
TOML
21 lines
536 B
TOML
[package]
|
|
name = "pylibafl"
|
|
version = "0.8.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.17", features = ["extension-module"] }
|
|
libafl_qemu = { path = "../../libafl_qemu", version = "0.8.2", features = ["python"] }
|
|
libafl_sugar = { path = "../../libafl_sugar", version = "0.8.2", features = ["python"] }
|
|
libafl = { path = "../../libafl", version = "0.8.2", features = ["python"] }
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.17" }
|
|
|
|
[lib]
|
|
name = "pylibafl"
|
|
crate-type = ["cdylib"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|