crosvm/async_core/Cargo.toml
Dylan Reid eed7020fba Add async_core crate
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>
2020-02-10 23:46:12 +00:00

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