HAHAHAHAHAHAHA

This commit is contained in:
nora 2022-12-19 15:52:04 +01:00
parent 106be93473
commit 38d126a4b6
No known key found for this signature in database
7 changed files with 226 additions and 145 deletions

View file

@ -4,6 +4,7 @@ extern crate tracing;
use std::{path::PathBuf, str::FromStr};
mod build;
mod dylib_flag;
mod everybody_loops;
mod expand;
mod privatize;
@ -11,9 +12,10 @@ mod processor;
use anyhow::{Context, Result};
use clap::Parser;
use dylib_flag::RustFunction;
use processor::Minimizer;
use crate::{processor::Processor};
use crate::processor::Processor;
#[derive(clap::Parser)]
#[command(version, about, name = "cargo", bin_name = "cargo")]
@ -33,6 +35,8 @@ pub struct Options {
rustc: bool,
#[arg(long)]
no_verify: bool,
#[arg(long)]
verify_fn: Option<RustFunction>,
#[arg(long)]
env: Vec<EnvVar>,