mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
2c96bed807
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>
28 lines
757 B
TOML
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" }
|