generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
37 lines (33 loc) · 1.18 KB
/
Cargo.toml
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
33
34
35
36
37
[package]
name = "crash-handler"
description = "Allows running of user code during crash events"
repository = "https://github.com/EmbarkStudios/crash-handling"
version = "0.6.2"
authors = ["Embark <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/crash-handler"
homepage = "https://github.com/EmbarkStudios/crash-handling/tree/main/crash-handler"
keywords = ["breakpad", "minidump", "crash", "signal", "exception"]
[features]
default = []
# If enabled, will log out information when a signal is raised/exception thrown
# but logged in a manner that is safe.
debug-print = []
[dependencies]
# Nicer handling of complex cfg expressions
cfg-if.workspace = true
# Definition of a portable crash-context that can be shared between various
# crates
crash-context.workspace = true
# Wrapper around libc
libc.workspace = true
# Nicer sync primitives
parking_lot.workspace = true
[target.'cfg(target_os = "macos")'.dependencies]
# Bindings to MacOS specific APIs that are used. Note we don't use the `mach`
# crate as it is unmaintained
mach2.workspace = true
[dev-dependencies]
sadness-generator = { path = "../sadness-generator" }