#run-command #programs #running #anywhere #ease #robust #variables

xscript

A library for writing robust shell-script-like programs and running commands anywhere with ease

5 unstable releases

0.3.0 Dec 23, 2023
0.2.0 Jul 23, 2023
0.1.2 Jul 9, 2023
0.1.1 Jul 9, 2023
0.1.0 Jul 9, 2023

#3 in #anywhere

Download history 3/week @ 2024-01-01 46/week @ 2024-01-08 4/week @ 2024-01-15 16/week @ 2024-01-22 18/week @ 2024-01-29 14/week @ 2024-02-05 17/week @ 2024-02-12 25/week @ 2024-02-26 29/week @ 2024-03-04 86/week @ 2024-03-11 18/week @ 2024-03-18 57/week @ 2024-04-01 23/week @ 2024-04-15

82 downloads per month

MIT/Apache

48KB
1.5K SLoC

XScript

A library for writing robust shell-script-like programs and running commands anywhere with ease.

XScript Crate Docs License: MIT/Apache

use xscript::{read_str, run, vars, Run, LocalEnv};

let mut env = LocalEnv::current_dir()?.with_vars(vars! {
    RUSTDOCFLAGS = "--cfg docsrs --cfg xscript_unstable",
    RUSTFLAGS = "--cfg xscript_unstable",
});

let project_root = read_str!(env, ["git", "rev-parse", "--show-toplevel"])?;
env.change_dir(project_root)?;

let cargo_args = ["+nightly"];
let doc_args = ["--lib", "--all-features"];
run!(env, ["cargo", ...cargo_args, "doc", ...doc_args])?;

Checkout the documentation for details.

⚖️ Licensing

This project is licensed under either MIT or Apache 2.0 at your opinion. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache 2.0 license, shall be dual licensed as above, without any additional terms or conditions.


Made with ❤️ for OSS by Silitics.

Dependencies

~0–14MB
~142K SLoC