generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
30 lines (26 loc) · 981 Bytes
/
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
[package]
name = "sentry-contrib-breakpad"
description = "Unopinionated crash collection for Sentry reporting purposes"
repository = "https://github.com/EmbarkStudios/sentry-contrib-rust"
version = "0.9.0"
authors = ["Embark <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/sentry-contrib-breakpad"
homepage = "https://github.com/EmbarkStudios/sentry-contrib-rust"
keywords = ["breakpad", "sentry", "minidump", "crash"]
exclude = [".github", "release.toml", "breakpad-handler", "breakpad-sys"]
[badges]
# We don't use this crate ourselves any longer
maintenance = { status = "passively-maintained" }
[features]
default = []
debug-logs = []
[dependencies]
breakpad-handler = { version = "0.2.0", path = "./breakpad-handler" }
sentry-core = { version = ">=0.31.7", features = ["client"] }
sentry-types = ">=0.31.7"
serde_json = "1.0"
[workspace]
members = ["breakpad-handler", "breakpad-sys"]