stow-cli 0.4.1

CLI that routes rustc invocations through the stow public artifact cache
Documentation
1
2
3
4
5
6
7
//! stow exposed as a `cargo` subcommand: `cargo stow <args>` invokes this
//! binary as `cargo-stow stow <args>`, and `stow_cli::run()` strips the
//! repeated subcommand word so both forms parse identically.

fn main() -> stow_types::error::Result<()> {
    stow_cli::run()
}