whisker-cli 0.2.2

Whisker CLI: `whisker` and `cargo-whisker` (hybrid) — scaffold, doctor, and dev-loop Whisker apps.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `whisker-linker-shim` — `-C linker=<shim>` target.
//!
//! rustc invokes us as
//!     whisker-linker-shim <linker-driver-args...>
//! when `-C linker=whisker-linker-shim` is in the rustc command line.
//! All the work is in `whisker_cli::linker_shim::run`.

fn main() -> anyhow::Result<()> {
    whisker_cli::linker_shim::run()
}