crosvm/base/Cargo.toml
Shin Kawamura 080a9e13ff Revert "base: unix: add fork_process"
Revert submission 3935683

Reason for revert: userfaultfd-sys fails to build on windows
Reverted Changes:
Icf46cfb26:swap: add PageHandler
I408dbfa4d:base: unix: add fork_process
Ie62a0cf53:swap: suspend device processes using SIGSTOP signa...
I4ce16eef3:swap: add swap file
I13ae09cd9:swap: add userfaultfd wrapper

Change-Id: I200161ab0bc966e337a8acaa16cfec50a45d3061
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4015881
Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org>
Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
2022-11-09 06:02:39 +00:00

38 lines
911 B
TOML

[package]
name = "base"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[features]
chromeos = []
kiwi = []
[dependencies]
audio_streams = { path = "../common/audio_streams" } # provided by ebuild
base_event_token_derive = { path = "base_event_token_derive", version = "*" }
data_model = { path = "../common/data_model" } # provided by ebuild
sync = { path = "../common/sync" } # provided by ebuild
cfg-if = "*"
chrono = "*"
env_logger = "0.9.0"
libc = "*"
log = "0.4"
once_cell = "1.7"
remain = "0.2"
serde = { version = "1", features = [ "derive" ] }
serde_json = "*"
smallvec = "1.6.1"
tempfile = "3"
thiserror = "1.0.20"
uuid = { version = "0.8.2", features = ["v4"] }
[target.'cfg(windows)'.dependencies]
rand = "0.8"
winapi = "*"
win_util = { path = "../win_util"}
protobuf = { version = "*", features = [ "with-serde" ] }
[target.'cfg(windows)'.dev-dependencies]
regex = "*"