mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
6b55a6f0e1
Contributes: #11168 https://developer.apple.com/documentation/corefoundation/1542428-cfrunloopgetcurrent implies that we should be `CFRetain`ing the run loop. Lets do that, and see if it reduces the number of crashes we see. Release Notes: - (maybe) Fix a rare crash in watching settings files.
28 lines
464 B
TOML
28 lines
464 B
TOML
[package]
|
|
name = "fsevent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/fsevent.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
fsevent-sys = "3.0.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-apple-darwin"]
|