-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
32 lines (28 loc) · 1003 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
31
32
[package]
name = "apple-crash-report-parser"
version = "0.5.1"
authors = ["Armin Ronacher <[email protected]>", "Sentry <[email protected]>"]
keywords = ["apple", "crashreport"]
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
repository = "https://github.com/getsentry/apple-crash-report-parser"
homepage = "https://github.com/getsentry/apple-crash-report-parser"
documentation = "https://docs.rs/apple-crash-report-parser"
categories = ["parser-implementations"]
description = """
Parses apple crash report text files.
"""
[package.metadata.docs.rs]
all-features = true
[features]
with_serde = ["uuid/serde", "chrono/serde", "serde"]
[dependencies]
regex = "1.1.0"
lazy_static = "1.2.0"
uuid = { version = "1.0.0" }
chrono = { version = "0.4.23", default-features = false, features = ["std"] }
serde = { version = "1.0.84", features = ["derive"], package = "serde", optional = true }
[dev-dependencies]
serde_json = "1.0.34"
insta = { version = "1.26.0", features = ["yaml"] }