[![crates.io](https://img.shields.io/crates/v/executeevcxr.svg)][execute_evcxr] [![crates.io](https://img.shields.io/crates/d/executeevcxr.svg)][execute_evcxr]

Execution of [evcxr]-flavored Rust

Further [evcxr] can refer to the evaluation context, to Jupyter kernel for Rust programming language, or to its supported script-like syntax.

Example of [evcxr]-flavored Rust

```rust,ignore :dep image = "0.23" :dep evcxrimage = "1.1" // In a pure Rust project, the dependencies above would be specified in Cargo.toml use evcxrimage::ImageDisplay;

image::ImageBuffer::from_fn(256, 256, |x, y| { if (x as i32 - y as i32).abs() < 3 { image::Rgb([0, 0, 255]) } else { image::Rgb([0, 0, 0]) } }) ```

Example for [Jupyter Notebook] with [evcxr kernel]

```rust,ignore :dep execute_evcxr = { version = "0.1.2" }

use executeevcxr::{executeevcxr, Config};

// This way it's possible to specify the non-default values let config = Config { verbose: false, ..Default::default() }; executeevcxr(r#" :dep nalgebra = "0.31.0" :dep nalgebralatex = { version = "0.1.6", features = ["lin_sys", "evcxr"] }

use nalgebra::{matrix, Const}; use nalgebralatex::{ linsys::{ LinSys, unknowns::SingleLetterBoldfaceVecOfUnknowns, numbering::Numbering, fmt::CasesLinSysFormatter, }, fmt::EvcxrOutputFormatter, }; use std::io::{stdout, Write};

let mut s = String::new(); let m = matrix!( 1,2,3; 4,5,6; 7,8,9; ); let vecofunknowns = SingleLetterBoldfaceVecOfUnknowns::<_,{Numbering::OneBased}>::new('x', Const::<3>); let ls = LinSys::new(m, vecofunknowns); CasesLinSysFormatter::writeevcxroutput(&mut s, &ls).unwrap(); stdout().writeall(s.asbytes()).unwrap(); "#, config); ```

Example for Rust project

```rust extern crate execute_evcxr;

use executeevcxr::{executeevcxr, Config};

fn main() { let config = Config { ..Config::default() }; executeevcxr(r#" :dep nalgebra = "0.31.0" :dep nalgebralatex = { version = "0.1.6", features = ["lin_sys", "evcxr"] }

use nalgebra::{matrix, Const}; use nalgebralatex::{ linsys::{ LinSys, unknowns::SingleLetterBoldfaceVecOfUnknowns, numbering::Numbering, fmt::CasesLinSysFormatter, }, fmt::EvcxrOutputFormatter, }; use std::io::{stdout, Write};

let mut s = String::new(); let m = matrix!( 1,2,3; 4,5,6; 7,8,9; ); let vecofunknowns = SingleLetterBoldfaceVecOfUnknowns::<_,{Numbering::OneBased}>::new('x', Const::<3>); let ls = LinSys::new(m, vecofunknowns); CasesLinSysFormatter::writeevcxroutput(&mut s, &ls).unwrap(); stdout().writeall(s.asbytes()).unwrap(); "#, config); } ```

At the moment of writing, the original [evcxr kernel] supports a lot but not all 1 features of Rust. This crate has been born as a temporary solution to the problem.

Note on [evcxr]-flavored Rust

The syntax supported by [evcxr kernel], as opposed to pure Rust, is implementation-defined. As a result, the same [evcxr]-flavored script can be executed differently by [execute_evcxr] and [evcxr] itself. In case of discrepancies, the behavior of [evcxr] is considered correct and the deviation on the side of [execute_evcxr] must be treated a bug, unless stated otherwise.

Note on limitations

For library developers

This is a README for library users. There's a separate DEV-README.md with information that can be relevant only to library developers.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.