forked from getsentry/sentry-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (33 loc) · 1.03 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
[package]
name = "sentry-tracing"
version = "0.34.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 = """
Sentry integration for tracing and tracing-subscriber crates.
"""
edition = "2021"
rust-version = "1.73"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
backtrace = ["dep:sentry-backtrace"]
[dependencies]
sentry-core = { version = "0.34.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.34.0", path = "../sentry-backtrace", optional = true }
[dev-dependencies]
log = "0.4"
sentry = { path = "../sentry", default-features = false, features = ["test"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.1", features = ["fmt", "registry"] }
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] }