diff --git a/Cargo.lock b/Cargo.lock index 023963d8e..f30d5ffb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2196,6 +2196,7 @@ dependencies = [ "json5", "log", "notify", + "parking_lot", "rand 0.9.2", "rand_chacha 0.9.0", "regex", diff --git a/Cargo.toml b/Cargo.toml index da36927d9..79b6d20d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,6 +69,7 @@ rand = "0.9.2" tracing = "0.1.41" schemars = "1.0.4" garde = "0.22" +parking_lot = "0.12.4" [profile.release] debug = "line-tables-only" diff --git a/core/Cargo.toml b/core/Cargo.toml index 37c150524..b53fcfbb0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -61,7 +61,7 @@ libm = "0.2" turso_macros = { workspace = true } miette = "7.6.0" strum = { workspace = true } -parking_lot = "0.12.3" +parking_lot = { workspace = true } crossbeam-skiplist = "0.1.3" tracing = "0.1.41" ryu = "1.0.19" diff --git a/simulator/Cargo.toml b/simulator/Cargo.toml index a8f85ca58..b0f372819 100644 --- a/simulator/Cargo.toml +++ b/simulator/Cargo.toml @@ -42,3 +42,4 @@ schemars = { workspace = true } garde = { workspace = true, features = ["derive", "serde"] } json5 = { version = "0.4.1" } strum = { workspace = true } +parking_lot = { workspace = true }