1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
use clap::Parser;
#[derive(Debug, Default, Parser)]
#[clap(bin_name = "forc deploy", version)]
pub struct DeployCommand {
/// Path to the project, if not specified, current working directory will be used.
#[clap(short, long)]
pub path: Option<String>,
/// Print the generated Sway AST (Abstract Syntax Tree).
#[clap(long)]
pub print_ast: bool,
/// Print the finalized ASM.
///
/// This is the state of the ASM with registers allocated and optimisations applied.
#[clap(long)]
pub print_finalized_asm: bool,
/// Print the generated ASM.
///
/// This is the state of the ASM prior to performing register allocation and other ASM
/// optimisations.
#[clap(long)]
pub print_intermediate_asm: bool,
/// Print the generated Sway IR (Intermediate Representation).
#[clap(long)]
pub print_ir: bool,
/// If set, outputs a binary file representing the script bytes.
#[clap(short = 'o')]
pub binary_outfile: Option<String>,
/// If set, outputs source file mapping in JSON format
#[clap(short = 'g', long)]
pub debug_outfile: Option<String>,
/// Offline mode, prevents Forc from using the network when managing dependencies.
/// Meaning it will only try to use previously downloaded dependencies.
#[clap(long = "offline")]
pub offline_mode: bool,
/// Silent mode. Don't output any warnings or errors to the command line.
#[clap(long = "silent", short = 's')]
pub silent_mode: bool,
/// The directory in which the sway compiler output artifacts are placed.
///
/// By default, this is `<project-root>/out`.
#[clap(long)]
pub output_directory: Option<String>,
/// By default the JSON for ABIs is formatted for human readability. By using this option JSON
/// output will be "minified", i.e. all on one line without whitespace.
#[clap(long)]
pub minify_json_abi: bool,
/// By default the JSON for initial storage slots is formatted for human readability. By using
/// this option JSON output will be "minified", i.e. all on one line without whitespace.
#[clap(long)]
pub minify_json_storage_slots: bool,
/// Requires that the Forc.lock file is up-to-date. If the lock file is missing, or it
/// needs to be updated, Forc will exit with an error
#[clap(long)]
pub locked: bool,
/// The node url to deploy, if not specified uses DEFAULT_NODE_URL.
/// If url is specified overrides network url in manifest file (if there is one).
#[clap(long, short)]
pub url: Option<String>,
/// Name of the build profile to use.
/// If it is not specified, forc will use debug build profile.
#[clap(long)]
pub build_profile: Option<String>,
/// Use release build plan. If a custom release plan is not specified, it is implicitly added to the manifest file.
///
/// If --build-profile is also provided, forc omits this flag and uses provided build-profile.
#[clap(long)]
pub release: bool,
/// Output the time elapsed over each part of the compilation process.
#[clap(long)]
pub time_phases: bool,
}