1[package] 2name = "libchromeos" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2018" 6 7[dependencies] 8data_model = { path = "../crosvm/data_model" } # provided by ebuild 9libc = "0.2" 10log = "0.4" 11protobuf = "2.1" 12intrusive-collections = "0.9" 13futures = { version = "0.3", default-features = false, features = ["alloc"] } 14 15[dev-dependencies] 16futures = { version = "0.3", features = ["async-await"] } 17futures-executor = { version = "0.3", features = ["thread-pool"] } 18futures-util = "0.3" 19 20