forked from fast/fastrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (39 loc) · 1.25 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
[workspace]
members = [
"fastrace",
"fastrace-macro",
"fastrace-jaeger",
"fastrace-datadog",
"fastrace-opentelemetry",
"fastrace-futures",
# non-publish crates
"examples",
"tests/macros",
"tests/statically-disable",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/fast/fastrace"
rust-version = "1.80.0"
[workspace.dependencies]
# workspace dependencies
fastrace = { version = "0.7.9", path = "fastrace" }
fastrace-macro = { version = "0.7.9", 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
log = { version = "0.4.27" }
opentelemetry = { version = "0.30.0", default-features = false, features = ["trace"] }
opentelemetry-otlp = { version = "0.30.0", default-features = false, features = ["trace", "grpc-tonic"] }
opentelemetry_sdk = { version = "0.30.0", default-features = false, features = ["trace"] }
serde = { version = "1.0", features = ["derive"] }
# test dependencies
tokio = { version = "1.45.0", features = ["full"] }
[profile.bench]
lto = true
opt-level = 3