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"
|
2021-07-06 07:35:07 +00:00
|
|
|
data_model = { path = "../data_model" } # provided by ebuild
|
2021-03-13 02:07:30 +00:00
|
|
|
intrusive-collections = "0.9"
|
2021-03-30 10:08:52 +00:00
|
|
|
io_uring = { path = "../io_uring" } # provided by ebuild
|
2019-11-23 00:41:01 +00:00
|
|
|
libc = "*"
|
2021-07-06 07:35:07 +00:00
|
|
|
once_cell = "1.7.2"
|
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"
|
2021-03-30 10:08:52 +00:00
|
|
|
sync = { path = "../sync" } # provided by ebuild
|
|
|
|
sys_util = { path = "../sys_util" } # provided by ebuild
|
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"] }
|
2021-03-19 21:51:33 +00:00
|
|
|
futures-executor = { version = "0.3", features = ["thread-pool"] }
|
|
|
|
futures-util = "0.3"
|
2021-03-30 10:08:52 +00:00
|
|
|
tempfile = { path = "../tempfile" } # provided by ebuild
|
|
|
|
|
|
|
|
[workspace]
|