aboutsummaryrefslogtreecommitdiffstats
path: root/components/background_hang_monitor/Cargo.toml
blob: 9e54d6090f6c4976408e09bb68e6648ac2b6ae19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "background_hang_monitor"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
publish = false
edition = "2018"

[lib]
name = "background_hang_monitor"
path = "lib.rs"
test = false
doctest = false

[dependencies]
backtrace = { workspace = true }
crossbeam-channel = { workspace = true }
ipc-channel = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
msg = { path = "../msg" }
serde_json = { workspace = true }

[dev-dependencies]
lazy_static = { workspace = true }

[target.'cfg(target_os = "macos")'.dependencies]
mach = "0.3"

[target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies]
nix = "0.14"
unwind-sys = "0.1.1"