crosvm/perfetto/Cargo.toml
Daniel Verkamp 2c96bed807 Cargo.toml: Remove unused data_model deps
Several crates still declared a dependency on data_model despite not
using any imports from it.

BUG=b:312312646
TEST=tools/dev_container tools/presubmit

Change-Id: I63a67696c205f684b1e4ac8bdad4de5f294b63dc
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5370964
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
2024-03-13 20:00:26 +00:00

28 lines
757 B
TOML

[package]
name = "perfetto"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[features]
# Bypassing default features requires specifying either openssl or
# pure-rust-hashes.
default = ["openssl"]
# Use a pure Rust crate for hashing instead of openssl.
pure-rust-hashes = ["sha2"]
[dependencies]
anyhow = "*"
base = { path = "../base" }
cfg-if = "1.0.0"
cros_tracing_types = { path = "../cros_tracing_types" }
openssl = { version = "*", optional = true }
protobuf = "3.2"
serde = { version = "1", features = [ "derive" ] }
sha2 = { version = "*", optional = true }
sync = { path = "../common/sync" }
zerocopy = { version = "0.7", features = ["derive"] }
[build-dependencies]
proto_build_tools = { path = "../proto_build_tools" }