execute_evcxr 0.1.1

A library for execution of evcxr-supported syntax via building and executing a binary crate
Documentation
pub struct Config {
    pub verbose: bool,
    pub keep_binary_crate: bool,
}

impl AsRef<Config> for Config {
    fn as_ref(&self) -> &Config {
        self
    }
}

impl Default for Config {
    fn default() -> Self {
        Self {
            verbose: false,
            keep_binary_crate: false,
        }
    }
}