Cargo command to work with Sony PlayStation Vita rust project binaries.
For general guidelines see vita-rust wiki
VITASDK
environment variable must point to its location.cargo vita logs
cargo vita coredump parse
Use the nightly toolchain to build Vita apps (either by using rustup override nightly for the project directory or by adding +nightly in the cargo invocation).
``` Cargo wrapper for developing Sony PlayStation Vita homebrew apps
Usage: cargo vita [OPTIONS]
Commands: build Builds the Rust binary/tests/examples into a VPK or any of the intermediate steps upload Uploads files and directories to the Vita vita ftp run Starts an installed title on the Vita by the title id logs Start a TCP server on this machine, to which Vita can stream logs via PrincessLog coredump Download coredump files from the Vita reboot Reboot the Vita help Print this message or the help of the given subcommand(s)
Options:
-v, --verbose... Print the exact commands cargo-vita
is running. Passing this flag multiple times will enable verbose mode for the rust compiler
-h, --help Print help (see more with '--help')
-V, --version Print version
```
The build
command pass-through arguments are passed to cargo build.
```
cargo vita -v build vpk -- --release
cargo vita -v build vpk -- --release --tests
cargo vita -v build vpk --upload -- --release --examples
cargo vita -v build eboot --update --run -- --release
cargo vita -v logs ```