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