-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCargo.toml
36 lines (32 loc) · 901 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
33
34
35
36
[package]
name = "sentry-types"
version = "0.36.0"
authors = ["Sentry <hello@sentry.io>"]
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 = "2021"
rust-version = "1.73"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["protocol"]
protocol = []
metrics = []
[dependencies]
debugid = { version = "0.8.0", features = ["serde"] }
hex = "0.4.3"
rand = "0.8.5"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.46"
thiserror = "1.0.15"
time = { version = "0.3.5", features = ["formatting", "parsing"] }
url = { version = "2.1.1", features = ["serde"] }
uuid = { version = "1.0.0", features = ["serde"] }
[dev-dependencies]
rstest = "0.19.0"