-
-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.1 KB
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
40
[package]
name = "sentry-tracing"
version = "0.47.0"
authors = { workspace = true }
license = "MIT"
readme = "README.md"
repository = { workspace = true }
homepage = { workspace = true }
description = """
Sentry integration for the tracing and tracing-subscriber crates.
"""
edition = { workspace = true }
rust-version = { workspace = true }
[package.metadata.docs.rs]
all-features = true
[features]
default = []
backtrace = ["dep:sentry-backtrace"]
logs = ["sentry-core/logs"]
[dependencies]
sentry-core = { version = "0.47.0", path = "../sentry-core", features = [
"client",
] }
tracing-core = "0.1"
tracing-subscriber = { version = "0.3.20", default-features = false, features = [
"std",
] }
sentry-backtrace = { version = "0.47.0", path = "../sentry-backtrace", optional = true }
bitflags = "2.9.4"
[dev-dependencies]
log = "0.4"
sentry = { path = "../sentry", default-features = false, features = ["test", "tracing"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3.20", features = ["fmt", "registry"] }
tokio = { version = "1.44", features = ["rt-multi-thread", "macros", "time"] }