Skip to content

Commit 01636c5

Browse files
committed
Merge branch 'main' into linda/shape-validation
2 parents 176a6eb + 9dbd8db commit 01636c5

33 files changed

+4199
-2618
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ p3-util = { git = "https://github.com/Plonky3/Plonky3" }
4848
itertools = { version = "0.14.0", default-features = false, features = [
4949
"use_alloc",
5050
] }
51+
proptest = { version = "1.5", default-features = true }
5152
rand = { version = "0.9.2", default-features = false, features = ["small_rng"] }
5253
serde = { version = "1.0", default-features = false, features = [
5354
"derive",

circuit/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ p3-matrix.workspace = true
4141
p3-merkle-tree.workspace = true
4242
p3-symmetric.workspace = true
4343

44+
proptest.workspace = true
4445
rand.workspace = true
4546
tracing-forest = { workspace = true, features = ["ansi", "smallvec"] }
4647
tracing-subscriber = { workspace = true, features = ["std", "env-filter"] }

circuit/src/alloc_entry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ fn dump_internal_log(allocation_log: &[AllocationEntry]) {
9797
if label.is_empty() {
9898
"".to_string()
9999
} else {
100-
format!(": {}", label)
100+
format!(": {label}")
101101
}
102102
}
103103

@@ -234,7 +234,7 @@ fn dump_internal_log(allocation_log: &[AllocationEntry]) {
234234
);
235235
for entry in non_primitives {
236236
let op_name = match &entry.alloc_type {
237-
AllocationType::NonPrimitiveOp(op_type) => format!("{:?}", op_type).to_string(),
237+
AllocationType::NonPrimitiveOp(op_type) => format!("{op_type:?}").to_string(),
238238
_ => "Unknown".to_string(),
239239
};
240240
if !entry.dependencies.is_empty() {

0 commit comments

Comments
 (0)