mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
088e7f3025
This depends on the `assertions` crate added in CL:1366819. `const_assert!(boolean expression)` is a compile-time assertion that fails to compile if the expression is false. TEST=`cargo check` each of the modified crates Change-Id: I559884baf2275b1b506619693cd100a4ffc8adcd Reviewed-on: https://chromium-review.googlesource.com/1368364 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: David Tolnay <dtolnay@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org>
13 lines
272 B
TOML
13 lines
272 B
TOML
[package]
|
|
name = "usb_util"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
assertions = { path = "../assertions" }
|
|
data_model = { path = "../data_model" }
|
|
sync = { path = "../sync" }
|
|
|
|
[build-dependencies]
|
|
pkg-config = "=0.3.11"
|