aboutsummaryrefslogtreecommitdiff
path: root/cros_tracing/Cargo.toml
blob: 4036d0c9285e20c7d6139a1a6345e3472211a088 (plain)
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
[package]
name = "cros_tracing"
version = "0.1.0"
authors = ["The ChromiumOS Authors"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[test]]
name = "trace_marker"
path = "tests/trace_marker.rs"
harness = false
required-features = ["trace_marker"]

[features]
trace_marker = []
perfetto = ["dep:perfetto"]

[dependencies]
anyhow = "*"
base = "*"
cfg-if = "1.0.0"
cros_tracing_types = { path = "../cros_tracing_types" }
perfetto = { path = "../perfetto", optional = true }
sync = { path = "../common/sync" }

[dev-dependencies]
libtest-mimic = "0.6"