1[package] 2name = "base_tokio" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[dependencies] 8anyhow = "*" 9cfg-if = "1.0.0" 10futures = { version = "0.3" } 11libc = "*" 12serde = { version = "1" } 13tokio = { workspace = true } 14 15base = { path = "../base" } 16sync = { path = "../common/sync" } 17 18[target.'cfg(windows)'.dependencies] 19winapi = "*" 20