| [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 = { workspace = true } |
| base = { workspace = true } |
| cfg-if = { workspace = true } |
| cros_tracing_types = { path = "../cros_tracing_types" } |
| perfetto = { path = "../perfetto", optional = true } |
| sync = { workspace = true } |
| |
| [dev-dependencies] |
| libtest-mimic = "0.6" |