monerochan-cli 5.2.6

The CLI is used for various tasks related to MONEROCHAN, such as building the toolchain, compiling programs, and tracing programs.
docs.rs failed to build monerochan-cli-5.2.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: monerochan-cli-5.2.12

CLI

The cargo monerochan CLI is useful for various tasks related to the MONEROCHAN project, such as building the toolchain, compiling programs, tracing programs, and more. Typically users will not need to interact with the CLI directly, but rather use the monerochanup script to install the CLI.

Development

To run the CLI locally, you can use the following command:

cargo run --bin cargo-monerochan -- --help

To test a particular subcommand, you can pass in prove and the subcommand you want to test along with the arguments you want to pass to it. For example, to test the trace subcommand, you can run the following command:

cargo run --bin cargo-monerochan -- prove trace --elf <...> --trace <...>

Installing the CLI locally from source

You can install the CLI locally from source by running the following command:

cargo install --locked --force --path .

Running the CLI after installing

After installing the CLI, you can run it by simply running the following command:

cargo monerochan