[go: up one dir, main page]

forc 0.19.0

Fuel Orchestrator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod defaults;
pub mod parameters;
pub mod program_type;

/// The `forc` crate version formatted with the `v` prefix. E.g. "v1.2.3".
///
/// This git tag is used during `Manifest` construction to pin the version of the implicit `std`
/// dependency to the `forc` version.
pub const SWAY_GIT_TAG: &str = concat!("v", clap::crate_version!());

/// The suffix that helps identify the file which contains the hash of the binary file created when
/// scripts are built.
pub const SWAY_BIN_HASH_SUFFIX: &str = "-bin-hash";

/// The suffix that helps identify the file which contains the root hash of the binary file created
/// when predicates are built.
pub const SWAY_BIN_ROOT_SUFFIX: &str = "-bin-root";