forked from fast/fastrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 896 Bytes
/
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
[workspace]
members = [
"fastrace",
"fastrace-macro",
"fastrace-jaeger",
"fastrace-datadog",
"fastrace-opentelemetry",
"fastrace-futures",
"test-statically-disable",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/fast/fastrace"
rust-version = "1.75"
[workspace.dependencies]
# workspace dependencies
fastrace = { version = "0.7.2", path = "fastrace" }
fastrace-macro = { version = "0.7.2", path = "fastrace-macro" }
# workspace leaves
fastrace-datadog = { path = "fastrace-datadog" }
fastrace-futures = { path = "fastrace-futures" }
fastrace-jaeger = { path = "fastrace-jaeger" }
fastrace-opentelemetry = { path = "fastrace-opentelemetry" }
# crates.io dependencies
futures = { version = "0.3" }
log = { version = "0.4" }
serde = { version = "1.0", features = ["derive"] }
[profile.bench]
lto = true
opt-level = 3