Skip to content

Commit 932be72

Browse files
committed
zkvm-prover: separate bin and lib
Signed-off-by: noelwei <[email protected]>
1 parent 0c4c410 commit 932be72

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
mod prover;
2-
mod types;
3-
mod zk_circuits_handler;
4-
51
use clap::{ArgAction, Parser};
6-
use prover::{LocalProver, LocalProverConfig};
72
use scroll_proving_sdk::{
83
prover::ProverBuilder,
94
utils::{get_version, init_tracing},
105
};
6+
use zkvm_prover::{LocalProver, LocalProverConfig};
117

128
#[derive(Parser, Debug)]
139
#[command(disable_version_flag = true)]

zkvm-prover/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mod prover;
2+
mod zk_circuits_handler;
3+
4+
pub mod types;
5+
pub use prover::{LocalProver, LocalProverConfig};

0 commit comments

Comments
 (0)