forked from getsentry/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.28 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
40
41
42
43
[workspace]
members = ["relay", "relay-*", "tools/*"]
default-members = ["relay"]
resolver = "2"
[profile.dev]
# Debug information slows down the build and increases caches in the
# target folder, but we don't require stack traces in most cases.
debug = false
[profile.release]
# In release, however, we do want full debug information to report
# panic and error stack traces to Sentry.
debug = true
[workspace.dependencies]
anyhow = "1.0.66"
chrono = { version = "0.4.31", default-features = false, features = [
"std",
"serde",
] }
clap = { version = "4.4.6" }
criterion = "0.5"
futures = { version = "0.3", default-features = false, features = ["std"] }
insta = { version = "1.31.0", features = ["json", "redactions", "ron"] }
hash32 = "0.3.1"
hashbrown = "0.14.3"
indexmap = "2.2.5"
itertools = "0.10.5"
once_cell = "1.13.1"
parking_lot = "0.12.1"
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.93"
serde_yaml = "0.9.17"
schemars = { version = "=0.8.10", features = ["uuid1", "chrono"] }
similar-asserts = "1.4.2"
smallvec = { version = "1.11.2", features = ["serde"] }
thiserror = "1.0.38"
tokio = { version = "1.28.0", features = ["macros", "sync", "tracing"] }
url = "2.1.1"
uuid = { version = "1.7.0", features = ["serde", "v4"] }