whisker-cli 0.0.1

CLI for the Whisker mobile UI framework. Name reserved; implementation is in active development at the linked repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Placeholder binary. See the README on crates.io / the GitHub
//! repository for the in-progress real implementation.

fn main() {
    eprintln!(
        "whisker-cli is a name-reservation placeholder.\n\
         \n\
         The real implementation is in active development at:\n\
         \n\
           https://github.com/whiskerrs/whisker\n\
         \n\
         To try the in-progress CLI, install from git:\n\
         \n\
           cargo install --git https://github.com/whiskerrs/whisker whisker-cli\n",
    );
    std::process::exit(2);
}