mrubyedge-cli 1.1.12

mruby/edge cli endpoint - run, compile to wasm, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate askama;
use askama::Template;

#[derive(Template)]
#[template(path = "Cargo.toml.tmpl", escape = "none")]
pub struct CargoToml<'a> {
    pub mrubyedge_version: &'a str,
    pub mrubyedge_feature: &'a str,
    pub strip: &'a str,
}

#[derive(Template)]
#[template(path = "Cargo.toml.debug.tmpl", escape = "none")]
pub struct CargoTomlDebug<'a> {
    pub mruby_edge_crate_path: &'a str,
    pub mrubyedge_feature: &'a str,
}