-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.08 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
[package]
name = "relay-profiling"
authors = ["Sentry <oss@sentry.io>"]
description = "Profiling processing for Relay"
homepage = "https://getsentry.github.io/relay/"
repository = "https://github.com/getsentry/relay"
version = "26.3.1"
edition = "2024"
license-file = "../LICENSE.md"
publish = false
[lints]
workspace = true
[dependencies]
android_trace_log = { workspace = true, features = ["serde"] }
bytes = { workspace = true }
chrono = { workspace = true }
data-encoding = { workspace = true }
hashbrown = { workspace = true }
itertools = { workspace = true }
prost = { workspace = true }
relay-base-schema = { workspace = true }
relay-dynamic-config = { workspace = true }
relay-event-schema = { workspace = true }
relay-filter = { workspace = true }
relay-log = { workspace = true }
relay-metrics = { workspace = true }
relay-protocol = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_path_to_error = { workspace = true }
thiserror = { workspace = true }
url = { workspace = true }
uuid = { workspace = true }
[dev-dependencies]
insta = { workspace = true }