crosvm/common/sys_util/Cargo.toml
Vikram Auradkar 323006cf82 Move os independent files under a new crate sys_util_core
sys_util_core won't have OS specific features so that sys_util and
win_sys_util can depend on it.

Test: Presubmit
Bug: b:213149154
Upstream-Crate: common/win_sys_util

Cq-Depend: chromium:3433709
Change-Id: I863f7a6bc7549944b4d114cca6d7be04c3093fc3
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3426380
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
2022-02-08 20:59:24 +00:00

26 lines
660 B
TOML

[package]
name = "sys_util"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2018"
include = ["src/**/*", "Cargo.toml"]
[dependencies]
sys_util_core = { path = "../sys_util_core" } # provided by ebuild
data_model = { path = "../data_model" } # provided by ebuild
libc = "*"
poll_token_derive = { path = "../sys_util_core/poll_token_derive" } # provided by ebuild
remain = "0.2"
thiserror = "*"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
sync = { path = "../sync" } # provided by ebuild
tempfile = "3"
[target.'cfg(target_os = "android")'.dependencies]
android_log-sys = "0.2"
[features]
chromeos = []
[workspace]