From 07041ace3731244daefccd5b2cd936822a1981b6 Mon Sep 17 00:00:00 2001 From: Allen Webb Date: Thu, 13 Oct 2022 19:16:21 +0000 Subject: [PATCH] Adding missing `# provided by ebuild` to Cargo.tomls cros_async and by extension serde_keyvalue are needed on ChromeOS, so add the `# provided by ebuild` comments where appropriate to make it possible to uprev cros_async (which requires pulling in serde_keyvalue). BUG=b:250883877 TEST=kokoro passes Change-Id: I423cac0c4e5e30afac058b914358caca7d27edbf Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3953082 Auto-Submit: Allen Webb Commit-Queue: Dennis Kempin Reviewed-by: Dennis Kempin --- cros_async/Cargo.toml | 2 +- serde_keyvalue/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cros_async/Cargo.toml b/cros_async/Cargo.toml index 65801f6b92..9a2b44547e 100644 --- a/cros_async/Cargo.toml +++ b/cros_async/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.20" audio_streams = { path = "../common/audio_streams" } # provided by ebuild anyhow = "1.0" serde = "*" -serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] } +serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] } # provided by ebuild [target.'cfg(unix)'.dependencies] io_uring = { path = "../io_uring" } # provided by ebuild diff --git a/serde_keyvalue/Cargo.toml b/serde_keyvalue/Cargo.toml index f4f270522d..b08e73c2db 100644 --- a/serde_keyvalue/Cargo.toml +++ b/serde_keyvalue/Cargo.toml @@ -9,7 +9,7 @@ argh_derive = ["argh", "serde_keyvalue_derive"] [dependencies] argh = { version = "0.1.7", optional = true } -serde_keyvalue_derive = { path = "serde_keyvalue_derive", optional = true } +serde_keyvalue_derive = { path = "serde_keyvalue_derive", optional = true } # provided by ebuild serde = "1" thiserror = { version = "1.0.20" } remain = "*"