cargo-steel-lib 0.8.3

Cargo plugin to build dylib for steel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    let args = std::env::args()
        .skip(1)
        .skip_while(|x| x == "steel-lib")
        .collect();
    if cargo_steel_lib::run(args, Vec::new())? {
        Ok(())
    } else {
        let err: Box<dyn Error> =
            String::from("cargo build failed to complete successfully").into();
        Err(err)
    }
}