mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
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 <allenwebb@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com>
This commit is contained in:
parent
ee4c635de2
commit
07041ace37
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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 = "*"
|
||||
|
|
Loading…
Reference in a new issue