mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
This crate will provide asynchronous helpers wrapping primitives provided by sys_util. To start EventFDs and MsgReceivers are provided. Change-Id: Ia8862adafca995a3e3ab56582acc166a37fc8d2c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1955046 Reviewed-by: Dylan Reid <dgreid@chromium.org> Tested-by: Dylan Reid <dgreid@chromium.org> Commit-Queue: Dylan Reid <dgreid@chromium.org>
15 lines
319 B
TOML
15 lines
319 B
TOML
[package]
|
|
name = "async_core"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libc = "*"
|
|
cros_async = { path = "../cros_async" }
|
|
sys_util = { path = "../sys_util" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|