mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
9b006f13c8
This CL replaces BorrowedIoVec with VolatileSlice, since VolatileSlice is a superset of the BorrowedIoVec interface. Also uring_mem -> mem since that interface will not be exclusively used by uring. BUG=none TEST=builds Change-Id: I33e23483e7afc263c76d71f88736cf38fd5e520e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2724863 Reviewed-by: Dylan Reid <dgreid@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Noah Gold <nkgold@google.com>
29 lines
667 B
TOML
29 lines
667 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
async-task = "4"
|
|
io_uring = { path = "../io_uring" }
|
|
libc = "*"
|
|
paste = "1.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
slab = "0.4"
|
|
sync = { path = "../sync" }
|
|
sys_util = { path = "../sys_util" }
|
|
data_model = { path = "../data_model" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
thiserror = "1.0.20"
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "*", features = ["executor"] }
|
|
tempfile = { path = "../tempfile" }
|
|
vm_memory = { path = "../vm_memory" }
|