mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-06 00:13:28 +02:00
minor: Use a workspace dependency for parking_lot
This commit is contained in:
@@ -46,6 +46,7 @@ bitflags = "2.9"
|
|||||||
unicode-segmentation = "1.2"
|
unicode-segmentation = "1.2"
|
||||||
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
|
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
|
||||||
foldhash = "0.1"
|
foldhash = "0.1"
|
||||||
|
parking_lot = "0.12"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "25.1.1"
|
version = "25.1.1"
|
||||||
|
@@ -56,7 +56,7 @@ chrono = { version = "0.4", default-features = false, features = ["alloc", "std"
|
|||||||
textwrap = "0.16.2"
|
textwrap = "0.16.2"
|
||||||
|
|
||||||
nucleo.workspace = true
|
nucleo.workspace = true
|
||||||
parking_lot = "0.12"
|
parking_lot.workspace = true
|
||||||
globset = "0.4.16"
|
globset = "0.4.16"
|
||||||
regex-cursor = "0.1.5"
|
regex-cursor = "0.1.5"
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@ tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "p
|
|||||||
# the event registry is essentially read only but must be an rwlock so we can
|
# the event registry is essentially read only but must be an rwlock so we can
|
||||||
# setup new events on initialization, hardware-lock-elision hugely benefits this case
|
# setup new events on initialization, hardware-lock-elision hugely benefits this case
|
||||||
# as it essentially makes the lock entirely free as long as there is no writes
|
# as it essentially makes the lock entirely free as long as there is no writes
|
||||||
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
|
parking_lot = { workspace = true, features = ["hardware-lock-elision"] }
|
||||||
once_cell = "1.21"
|
once_cell = "1.21"
|
||||||
|
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
@@ -27,7 +27,7 @@ serde = { version = "1.0", features = ["derive"] }
|
|||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
tokio = { version = "1.44", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
tokio = { version = "1.44", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
||||||
tokio-stream = "0.1.17"
|
tokio-stream = "0.1.17"
|
||||||
parking_lot = "0.12.3"
|
parking_lot.workspace = true
|
||||||
arc-swap = "1"
|
arc-swap = "1"
|
||||||
slotmap.workspace = true
|
slotmap.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
@@ -49,7 +49,7 @@ serde_json = "1.0"
|
|||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
log = "~0.4"
|
log = "~0.4"
|
||||||
|
|
||||||
parking_lot = "0.12.3"
|
parking_lot.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
|
Reference in New Issue
Block a user