vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
use std::env;
use std::path::Path;
use std::process;
use super::vyre_conform::contribute::pipeline::run_contribute;
use super::vyre_conform::contribute::{ContributeFilter, StageStatus};

fn print_help() {
    println!(
        "vyre-conform contribution feedback loop\n\
         \n\
         USAGE:\n\
           cargo run --bin contribute -- --op <op-id>\n\
           cargo run --bin contribute -- --all\n\
         \n\
         OPTIONS:\n\
           --op <id>   Run mechanical gates on a single operation\n\
           --all       Run mechanical gates on every registered operation\n\
           --help      Print this message\n"
    );
}