about summary refs log tree commit diff
path: root/custom_mutators/rust/example_lain
diff options
context:
space:
mode:
authorjma <94166787+jma-qb@users.noreply.github.com>2024-11-08 17:15:51 +0100
committerGitHub <noreply@github.com>2024-11-08 17:15:51 +0100
commit0b22665391f5f068191a6c16c884c85aadee52b9 (patch)
treed6b3fab097638a880169f493aeaa9ccb53892eb6 /custom_mutators/rust/example_lain
parent21916a7f600c2f0808ebe8d668979e7e1686dc2c (diff)
downloadafl++-0b22665391f5f068191a6c16c884c85aadee52b9.tar.gz
Add support for post_process in Rust custom mutator + associated example with lain (#2241)
Diffstat (limited to 'custom_mutators/rust/example_lain')
-rw-r--r--custom_mutators/rust/example_lain/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom_mutators/rust/example_lain/Cargo.toml b/custom_mutators/rust/example_lain/Cargo.toml
index c52bf86f..ae7f24c1 100644
--- a/custom_mutators/rust/example_lain/Cargo.toml
+++ b/custom_mutators/rust/example_lain/Cargo.toml
@@ -8,9 +8,9 @@ edition = "2021"
 
 [dependencies]
 custom_mutator = { path = "../custom_mutator" }
-lain="0.5"
+lain = { git = "https://github.com/AFLplusplus/lain.git" }
 
 [[example]]
 name = "example_lain"
 path = "./src/lain_mutator.rs"
-crate-type = ["cdylib"]
\ No newline at end of file
+crate-type = ["cdylib"]