mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
34 lines
678 B
TOML
34 lines
678 B
TOML
[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 = "0.3"
|
|
bitflags = "1.0"
|
|
ipc-channel = "0.11"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
msg = {path = "../msg"}
|
|
serde = "1.0.60"
|
|
serde_json = "1.0"
|
|
crossbeam-channel = "0.3"
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "1.0"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
mach = "0.2.3"
|
|
|
|
[target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies]
|
|
nix = "~0.11.0"
|
|
unwind-sys = "0.1.1"
|