Skip to content

Commit 1c60b3d

Browse files
committed
naming
1 parent ed23d27 commit 1c60b3d

39 files changed

+162
-155
lines changed

Cargo.lock

Lines changed: 107 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.1.0"
88
edition = "2024"
99

1010
[workspace]
11-
members = ["crates/*", "crates/zk_vm/zk_vm_trace", "crates/zk_vm/zk_vm_air"]
11+
members = ["crates/*", "crates/lean_prover/vm_air", "crates/lean_prover/witness_generation"]
1212

1313
[workspace.lints]
1414
rust.missing_debug_implementations = "warn"
@@ -43,15 +43,15 @@ cast_sign_loss = "allow"
4343
air = { path = "crates/air" }
4444
sumcheck = { path = "crates/sumcheck" }
4545
utils = { path = "crates/utils" }
46-
vm = { path = "crates/vm" }
46+
lean_vm = { path = "crates/lean_vm" }
4747
xmss = { path = "crates/xmss" }
4848
pcs = { path = "crates/pcs" }
4949
lookup = { path = "crates/lookup" }
5050
compiler = { path = "crates/compiler" }
51-
zk_vm = { path = "crates/zk_vm" }
51+
lean_prover = { path = "crates/lean_prover" }
5252
rec_aggregation = { path = "crates/rec_aggregation" }
53-
zk_vm_trace = { path = "crates/zk_vm/zk_vm_trace" }
54-
zk_vm_air = { path = "crates/zk_vm/zk_vm_air" }
53+
witness_generation = { path = "crates/lean_prover/witness_generation" }
54+
vm_air = { path = "crates/lean_prover/vm_air" }
5555

5656
# External
5757
thiserror = "2.0"

crates/compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ pcs.workspace = true
2828
p3-poseidon2-air.workspace = true
2929
lookup.workspace = true
3030
sumcheck.workspace = true
31-
vm.workspace = true
31+
lean_vm.workspace = true

crates/compiler/src/a_simplify_lang.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ use crate::{
77
},
88
precompiles::Precompile,
99
};
10+
use lean_vm::LocationInSourceCode;
1011
use std::{
1112
collections::{BTreeMap, BTreeSet},
1213
fmt::{Display, Formatter},
1314
};
1415
use utils::ToUsize;
15-
use vm::LocationInSourceCode;
1616

1717
#[derive(Debug, Clone)]
1818
pub struct SimpleProgram {

crates/compiler/src/b_compile_intermediate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use crate::{F, a_simplify_lang::*, intermediate_bytecode::*, lang::*, precompiles::*};
2+
use lean_vm::*;
23
use p3_field::Field;
34
use std::{
45
borrow::Borrow,
56
collections::{BTreeMap, BTreeSet},
67
};
78
use utils::ToUsize;
8-
use vm::*;
99

1010
#[derive(Default)]
1111
struct Compiler {

0 commit comments

Comments
 (0)