add parking_lot to simulator

This commit is contained in:
pedrocarlo
2025-08-20 11:29:23 -03:00
parent 8c7da3a704
commit c01449e71b
4 changed files with 4 additions and 1 deletions

1
Cargo.lock generated
View File

@@ -2196,6 +2196,7 @@ dependencies = [
"json5",
"log",
"notify",
"parking_lot",
"rand 0.9.2",
"rand_chacha 0.9.0",
"regex",

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 }