-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 814 Bytes
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
[workspace]
resolver = "3"
members = [
"dial9-tokio-telemetry",
"dial9-trace-format",
"dial9-trace-format-derive",
"dial9-macro",
"dial9-viewer",
"dial9",
"perf-self-profile",
"examples/metrics-service",
"examples/simple-local",
]
exclude = [
"dial9-trace-format/fuzz",
]
[workspace.package]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/dial9-rs/dial9-tokio-telemetry"
[workspace.dependencies]
libc = "0.2"
dial9-perf-self-profile = { version = "0.4.2", path = "perf-self-profile" }
dial9-trace-format = { version = "0.4.0", path = "dial9-trace-format" }
dial9-trace-format-derive = { version = "0.4.0", path = "dial9-trace-format-derive" }
dial9-macro = { version = "0.3.6", path = "dial9-macro" }
assert2 = "0.4"
[profile.release]
debug = 1