mirror of
https://github.com/servo/servo.git
synced 2025-10-01 17:19:16 +01:00
Replace remutex
with parking_lot
's ReentrantMutex
(#31817)
Many things in Servo depend on `parking_lot`, so we can replace our homegrown remutex with `parking_lot`'s version. Fixes #12641.
This commit is contained in:
parent
8882507ad0
commit
34dd38b4cb
7 changed files with 5 additions and 388 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -875,13 +875,13 @@ dependencies = [
|
|||
"msg",
|
||||
"net",
|
||||
"net_traits",
|
||||
"parking_lot",
|
||||
"profile_traits",
|
||||
"script_layout_interface",
|
||||
"script_traits",
|
||||
"serde",
|
||||
"servo_config",
|
||||
"servo_rand",
|
||||
"servo_remutex",
|
||||
"servo_url",
|
||||
"style_traits",
|
||||
"webgpu",
|
||||
|
@ -5420,14 +5420,6 @@ dependencies = [
|
|||
"uuid",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "servo_remutex"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"log",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "servo_url"
|
||||
version = "0.0.1"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue