Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.04 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.04 KB

cargo-example2

cargo install cargo-example2

List examples

❯ cargo example https://github.com/clap-rs/clap-verbosity-flag

error: "--example" takes one argument.
Available examples:
    log
    tracing

Run an example

❯ cargo example https://github.com/clap-rs/clap-verbosity-flag --example tracing

    Finished dev [unoptimized + debuginfo] target(s) in 0.02s
     Running `/tmp/cargo-example/862177302567451381/target/debug/examples/tracing`

2023-06-08T06:42:12.641689Z ERROR tracing: Engines exploded

Build with --release

❯ cargo example https://github.com/clap-rs/clap-verbosity-flag --example tracing -- --release

Multiple crates in one repo

❯ cargo example https://github.com/DioxusLabs/dioxus/ --path packages/dioxus-tui/Cargo.toml --example border

vs cargo-example ?

cargo-example is archived and does not work with multi-crate repos.

cargo example dioxus-tui

This will list all examples in the repo, which are not examples of dioxus-tui.