crosvm/base/Cargo.toml
Daniel Verkamp d4505a7f1c base: replace PollToken with EventToken tree-wide
Pull the declaration of the `EventToken` enum up to the top level of the
base crate, replacing the identical implementations inside sys/windows
and sys/unix.

Use the `EventToken` name consistently throughout the tree to remove the
unix-flavored "poll" nomenclature.

BUG=b:213153157
TEST=tools/dev_container tools/presubmit --all

Change-Id: I0ba42037b533b796797a7a3f6d8d7e71a5592aba
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3642673
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-by: Noah Gold <nkgold@google.com>
2022-06-02 22:30:38 +00:00

37 lines
781 B
TOML

[package]
name = "base"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[features]
chromeos = []
[dependencies]
audio_streams = { path = "../common/audio_streams" }
base_event_token_derive = { path = "base_event_token_derive" }
data_model = { path = "../common/data_model" }
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"
sync = { path = "../common/sync" }
thiserror = "1.0.20"
tempfile = "3"
uuid = { version = "0.8.2", features = ["v4"] }
[target.'cfg(windows)'.dependencies]
lazy_static = "*"
rand = "*"
winapi = "*"
win_util = { path = "../win_util"}
[target.'cfg(windows)'.dev-dependencies]
regex = "*"