![github]![crates-io]![docs-rs]

image1

build-pretty

This lib crate is one of workarround solution for log displaying of Build Scripts issue such as rust-lang/cargo#985.

Usage

  1. Add build-pretty dependency in [build-dependencies] of your project's Cargo.toml

toml [package] ... build = "build.rs" ... [build-dependencies] build-pretty = "*"

  1. Write your build.rs with build-pretty:

```rust use buildpretty::{ buildpretty, CommandBuilder };

fn main() { buildpretty!() .enquecommand("Drink a cup of tea", CommandBuilder::newwitharg("echo", "🍵 Green!\n☕ Black!\n🧋 Bubbles!").into()) .enquecommand("Eat a hotdog", CommandBuilder::newwitharg("echo", "🌭 Hotdog!\n♨️ Hot?\n🐕 Dog!\n🌶️ Hot?\n🐶 Dog?").into()) .enquecommand("ls -l -a", CommandBuilder::newwithargs("ls", &["-l", "-a"]).into()) .enquefn("Ofcourse Fn can be used", Box::new(|output|{ *output = "brabrabra\nmewmewmew\nnekonyankonyanko🐾".tostring(); Ok(()) })) .enquecommand("Sleep", CommandBuilder::newwith_arg("echo", "😴 I'm sleee....\n💤...\n🛌....pyyyyy....").into()); } ```

and then:

image1

Examples:

Features:

LICENSE

Author