crosvm/base/base_event_token_derive/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

15 lines
264 B
TOML

[package]
name = "base_event_token_derive"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
include = ["*.rs", "Cargo.toml"]
[lib]
proc-macro = true
path = "event_token_derive.rs"
[dependencies]
proc-macro2 = "^1"
quote = "^1"
syn = "^1"