Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/sui-move/src/prove.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use sui_types::sui_framework_address_concat_string;

const SUI_NATIVE_TEMPLATE: &[u8] = include_bytes!("sui-natives.bpl");

/// Run the Move Prover on the package at `path` (Warning: Move Prover support for Sui is currently limited)
#[derive(Parser)]
#[group(id = "sui-move-prover")]
pub struct Prover {
Expand Down Expand Up @@ -92,6 +93,7 @@ impl Prover {
),
);

eprintln!("WARNING: the level of Move Prover support for Sui is incomplete; use at your own risk as not everything is guaranteed to work (please file an issue if an update breaks existing usage but the level of current support is limited)");
let prover_result = std::thread::spawn(move || {
prove::run_move_prover(
build_config,
Expand Down