1[package] 2name = "sys_util" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2018" 6include = ["src/**/*", "Cargo.toml"] 7 8[dependencies] 9data_model = { path = "../data_model" } # provided by ebuild 10libc = "*" 11poll_token_derive = { version = "*", path = "poll_token_derive" } 12serde = { version = "1", features = [ "derive" ] } 13serde_json = "1" 14sync = { path = "../sync" } # provided by ebuild 15tempfile = { path = "../tempfile" } # provided by ebuild 16 17[target.'cfg(target_os = "android")'.dependencies] 18android_log-sys = "0.2" 19 20[features] 21chromeos = [] 22 23[workspace] 24