2019-11-23 00:41:01 +00:00
|
|
|
[package]
|
|
|
|
name = "cros_async"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-17 01:21:58 +00:00
|
|
|
async-trait = "0.1.36"
|
2020-12-03 15:20:39 +00:00
|
|
|
async-task = "4"
|
2020-06-02 20:22:16 +00:00
|
|
|
io_uring = { path = "../io_uring" }
|
2019-11-23 00:41:01 +00:00
|
|
|
libc = "*"
|
2020-10-26 07:58:55 +00:00
|
|
|
paste = "1.0"
|
2019-11-23 00:41:01 +00:00
|
|
|
pin-utils = "0.1.0-alpha.4"
|
2020-12-03 15:20:39 +00:00
|
|
|
slab = "0.4"
|
|
|
|
sync = { path = "../sync" }
|
2020-11-06 03:10:36 +00:00
|
|
|
sys_util = { path = "../sys_util" }
|
2019-11-23 00:41:01 +00:00
|
|
|
syscall_defines = { path = "../syscall_defines" }
|
2020-09-17 01:21:58 +00:00
|
|
|
thiserror = "1.0.20"
|
2019-11-23 00:41:01 +00:00
|
|
|
|
|
|
|
[dependencies.futures]
|
|
|
|
version = "*"
|
|
|
|
default-features = false
|
2020-07-08 10:24:04 +00:00
|
|
|
features = ["alloc"]
|
2020-06-25 23:43:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-12-03 15:20:39 +00:00
|
|
|
futures = { version = "*", features = ["executor"] }
|
2020-06-25 23:43:44 +00:00
|
|
|
tempfile = { path = "../tempfile" }
|
2020-06-03 01:33:33 +00:00
|
|
|
vm_memory = { path = "../vm_memory" }
|