Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
google
GitHub Repository: google/crosvm
Path: blob/main/cros_tracing/Cargo.toml
5392 views
1
[package]
2
name = "cros_tracing"
3
version = "0.1.0"
4
authors = ["The ChromiumOS Authors"]
5
edition = "2021"
6
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
[[test]]
10
name = "trace_marker"
11
path = "tests/trace_marker.rs"
12
harness = false
13
required-features = ["trace_marker"]
14
15
[features]
16
trace_marker = []
17
perfetto = ["dep:perfetto"]
18
19
[dependencies]
20
anyhow = { workspace = true }
21
base = { workspace = true }
22
cfg-if = { workspace = true }
23
cros_tracing_types = { path = "../cros_tracing_types" }
24
perfetto = { path = "../perfetto", optional = true }
25
sync = { workspace = true }
26
27
[dev-dependencies]
28
libtest-mimic = "0.6"
29
30