crosvm/base/Cargo.toml
Zach Reizner de0c63dbcd implement Serialize and Deserialize for base and sys_util types
These types make up parts of larger messages that implemented
MsgOnSocket.

BUG=b:176847362
TEST=run_tests

Change-Id: I1f99e08f494d646ad0566eb556e2c28726d1d217
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2733207
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Zach Reizner <zachr@chromium.org>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
2021-03-29 19:39:52 +00:00

17 lines
381 B
TOML

[package]
name = "base"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2018"
[features]
chromeos = ["sys_util/chromeos"]
[dependencies]
cros_async = { path = "../cros_async" }
data_model = { path = "../data_model" }
libc = "*"
serde = { version = "1", features = [ "derive" ] }
serde_json = "*"
sync = { path = "../sync" }
sys_util = { path = "../sys_util" }