-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathCargo.toml
39 lines (35 loc) · 1.11 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
38
39
[package]
name = "sentry-tracing"
version = "0.37.0"
authors = ["Sentry <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/getsentry/sentry-rust"
homepage = "https://sentry.io/welcome/"
description = """
Sentry integration for tracing and tracing-subscriber crates.
"""
edition = "2021"
rust-version = "1.81"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["release-health"]
backtrace = ["dep:sentry-backtrace"]
release-health = ["sentry-core/release-health"]
[dependencies]
sentry-core = { version = "0.37.0", path = "../sentry-core", features = [
"client",
] }
tracing-core = "0.1"
tracing-subscriber = { version = "0.3.1", default-features = false, features = [
"std",
] }
sentry-backtrace = { version = "0.37.0", path = "../sentry-backtrace", optional = true }
[dev-dependencies]
log = "0.4"
sentry = { path = "../sentry", default-features = false, features = ["test"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3.1", features = ["fmt", "registry"] }
tokio = { version = "1.44", features = ["rt-multi-thread", "macros", "time"] }