1[package] 2name = "cros_tracing" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9[[test]] 10name = "trace_marker" 11path = "tests/trace_marker.rs" 12harness = false 13required-features = ["trace_marker"] 14 15[features] 16trace_marker = [] 17perfetto = ["dep:perfetto"] 18 19[dependencies] 20anyhow = "1" 21base = { path = "../base" } 22cfg-if = "1.0.0" 23cros_tracing_types = { path = "../cros_tracing_types" } 24perfetto = { path = "../perfetto", optional = true } 25sync = { path = "../common/sync" } 26 27[dev-dependencies] 28libtest-mimic = "0.6" 29