crosvm/9s/Cargo.toml
David Tolnay 088e7f3025 assertions: Use compile-time assertion macro
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>
2018-12-09 00:48:17 -08:00

11 lines
231 B
TOML

[package]
name = "9s"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
[dependencies]
assertions = { path = "../assertions" }
getopts = "=0.2.17"
libc = "=0.2.44"
p9 = { path = "../p9" }
sys_util = { path = "../sys_util" }