RAPX_AFTER_HELP

Constant RAPX_AFTER_HELP 

Source
pub const RAPX_AFTER_HELP: &str = "\u{1b}[1mNOTE:\u{1b}[22m multiple detections can be processed in single run by \nappending the options to the arguments. Like `cargo rapx -f -m`\nwill perform two kinds of detection in a row.\n\n\u{1b}[4mExamples:\u{1b}[24m\n\n1. detect use-after-free and memory leak for a riscv target:\n   cargo rapx check -f -m -- --target riscv64gc-unknown-none-elf\n2. detect use-after-free and memory leak for tests:\n   cargo rapx check -f -m -- --tests\n3. detect use-after-free and memory leak for all members:\n   cargo rapx check -f -m -- --workspace\n4. extract all public unsafe APIs in the current crate (outputs JSON to stderr):\n   cargo rapx extract unsafe-apis\n\n\u{1b}[4mEnvironment Variables (Values are case insensitive):\u{1b}[24m\n\n    RAP_LOG          verbosity of logging: trace, debug, info, warn\n                     trace: print all the detailed RAP execution traces.\n                     debug: display intermediate analysis results.\n                     warn: show bugs detected only.\n\n    RAP_CLEAN        run cargo clean before check: true, false\n                     * true is the default value except that false is set\n\n    RAP_RECURSIVE    scope of packages to check: none, shallow, deep\n                     * none or the variable not set: check for current folder\n                     * shallow: check for current workpace members\n                     * deep: check for all workspaces from current folder\n                      \n                     NOTE: for shallow or deep, rapx will enter each member\n                     folder to do the check.\n";