mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
33 lines
847 B
TOML
33 lines
847 B
TOML
[package]
|
|
name = "background_hang_monitor"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
name = "background_hang_monitor"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
background_hang_monitor_api = { workspace = true }
|
|
backtrace = { workspace = true }
|
|
base = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
lazy_static = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
mach2 = "0.4"
|
|
|
|
[target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies]
|
|
nix = { version = "0.29", features = ["signal"] }
|
|
unwind-sys = "0.1.4"
|