Skip to content

Commit 706535a

Browse files
authored
Merge branch 'main' into fix/v8-canary-bazel-2026-08-08
2 parents 2e88ead + 1018986 commit 706535a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/harness_pyo3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pyo3 = { version = "0.28", features = ["extension-module", "auto-initialize"] }
1919
serde = { version = "1.0", features = ["derive"] }
2020
serde_json = "1.0"
2121
parking_lot = "0.12"
22-
ffi_utils = { path = "../../../phenotype-shared/crates/ffi_utils" }
22+
2323

2424
[profile.release]
2525
opt-level = 3

crates/harness_pyo3/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use pyo3::prelude::*;
88
use pyo3::types::PyModule;
99
use std::collections::HashMap;
10-
use ffi_utils::FfiMutex;
10+
use parking_lot::Mutex as FfiMutex;
1111
use std::time::{Duration, Instant};
1212

1313
static CACHE: FfiMutex<Option<PyCache>> = FfiMutex::new(None);

0 commit comments

Comments
 (0)