From 590d3655cd97d6ad53cd0900b9ac5d7a9acd7084 Mon Sep 17 00:00:00 2001 From: LiuZhihong <704336673@qq.com> Date: Tue, 4 Apr 2023 16:34:22 +0800 Subject: [PATCH] add readme documentation description about the tui feature (#1198) --- fuzzers/baby_fuzzer/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fuzzers/baby_fuzzer/README.md b/fuzzers/baby_fuzzer/README.md index 42fd9a5011..9c420df82a 100644 --- a/fuzzers/baby_fuzzer/README.md +++ b/fuzzers/baby_fuzzer/README.md @@ -5,4 +5,6 @@ This is a minimalistic example about how to create a libafl based fuzzer. It runs on a single core until a crash occurs and then exits. The tested program is a simple Rust function without any instrumentation. -For real fuzzing, you will want to add some sort to add coverage or other feedback. \ No newline at end of file +For real fuzzing, you will want to add some sort to add coverage or other feedback. + +You can run this example using `cargo run`, and you can enable the TUI feature by running `cargo run --features tui`. \ No newline at end of file