mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
0d46a14212
Use the latest version of cfg-if and paste, which gdbstub crate will require. BUG=chromium:1141812 TEST=cargo build Cq-Depend: chromium:2507270 Change-Id: I9187cfc9a880f62b2aa1fcf5e5d47a720e5fbe60 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2499241 Tested-by: Keiichi Watanabe <keiichiw@chromium.org> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Zach Reizner <zachr@chromium.org> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
25 lines
529 B
TOML
25 lines
529 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
io_uring = { path = "../io_uring" }
|
|
libc = "*"
|
|
paste = "1.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
sys_util = { path = "../sys_util" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
slab = "0.4"
|
|
thiserror = "1.0.20"
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = { path = "../tempfile" }
|
|
vm_memory = { path = "../vm_memory" }
|