mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
eef1c93fdc
These will be needed by by block. Note that support for uring fallocate was added in 5.6. The users will have to handle falling back to synchronous calls if fallocate returns EINVAL. BUG=901139 TEST=added fallocate unit tests Change-Id: I51d635adcf0bb4dd55c5bfe50719f2fde2b88e49 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2274996 Reviewed-by: Dylan Reid <dgreid@chromium.org> Tested-by: Dylan Reid <dgreid@chromium.org> Commit-Queue: Dylan Reid <dgreid@chromium.org>
21 lines
432 B
TOML
21 lines
432 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
io_uring = { path = "../io_uring" }
|
|
libc = "*"
|
|
paste = "*"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
sys_util = { path = "../sys_util" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = { path = "../tempfile" }
|