forked from getsentry/sentry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 868 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
[package]
name = "sentry-types"
version = "0.23.0"
authors = ["Sentry <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/getsentry/sentry-rust"
homepage = "https://sentry.io/welcome/"
description = """
Common reusable types for implementing the sentry.io protocol.
"""
keywords = ["sentry", "protocol"]
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["protocol"]
protocol = []
[dependencies]
thiserror = "1.0.15"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.46"
url = { version = "2.1.1", features = ["serde"] }
chrono = { version = "0.4.13", default-features = false, features = ["clock", "std", "serde"] }
uuid = { version = "0.8.1", features = ["v4", "serde"] }
debugid = { version = "0.7.2", features = ["serde"] }
getrandom = "0.2.3"
hex = "0.4.3"