1[package] 2name = "base" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2018" 6 7[features] 8chromeos = ["sys_util/chromeos"] 9 10[dependencies] 11cros_async = { path = "../cros_async" } 12data_model = { path = "../data_model" } 13libc = "*" 14serde = { version = "1", features = [ "derive" ] } 15serde_json = "*" 16smallvec = "1.6.1" 17sync = { path = "../sync" } 18sys_util = { path = "../sys_util" } 19thiserror = "1.0.20" 20