-
-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
56 lines (50 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "sentry-core"
version = "0.48.2"
authors = { workspace = true }
license = "MIT"
readme = "README.md"
repository = { workspace = true }
homepage = { workspace = true }
description = """
Core Sentry library used for instrumentation and integration development.
"""
edition = { workspace = true }
rust-version = { workspace = true }
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true
[[bench]]
name = "scope_benchmark"
harness = false
[features]
default = []
client = ["rand"]
test = ["client", "release-health"]
release-health = []
logs = []
metrics = []
[dependencies]
log = { version = "0.4.8", optional = true, features = ["std"] }
rand = { version = "0.9.3", optional = true }
sentry-types = { version = "0.48.2", path = "../sentry-types" }
serde = { version = "1.0.104", features = ["derive"] }
serde_json = { version = "1.0.46" }
url = { version = "2.1.1" }
uuid = { version = "1.0.0", features = ["v4", "serde"], optional = true }
[dev-dependencies]
# Because we re-export all the public API in `sentry`, we actually run all the
# doctests using the `sentry` crate. This also takes care of the doctest
# limitation documented in https://github.com/rust-lang/rust/issues/45599.
sentry = { path = "../sentry", default-features = false, features = [
"test",
"transport",
"metrics",
] }
anyhow = "1.0.30"
criterion = "0.5"
futures = "0.3.24"
rayon = "1.5.3"
thiserror = "2.0.12"
tokio = { version = "1.44", features = ["rt", "rt-multi-thread", "macros"] }