cargo-truce 0.16.1

Build tool for truce audio plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Top-level command implementations. Each `cmd_*` function corresponds
//! to one entry in the dispatch match in `crate::run`.

pub(crate) mod build;
pub(crate) mod clean;
pub(crate) mod doctor;
pub(crate) mod install;
pub(crate) mod log_stream_au;
pub(crate) mod package;
pub(crate) mod remove;
pub(crate) mod reset_aax;
pub(crate) mod reset_au;
pub(crate) mod run;
pub(crate) mod screenshot;
pub(crate) mod status;
pub(crate) mod test;
pub(crate) mod validate;