mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-12-26 13:10:56 +00:00
800fcb060f
Implement encoding and decoding various primitives using the p9 protocol. In addition, add a procedural macro to derive the encoding and decoding implementation for structs built out of the primitives. BUG=chromium:703939 TEST=unit tests CQ-DEPEND=CL:1065063 Change-Id: I7256633fb7002da9ce8af03be2f24410b90ccf3f Signed-off-by: Chirantan Ekbote <chirantan@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/969965 Reviewed-by: Stephen Barber <smbarber@chromium.org>
13 lines
216 B
TOML
13 lines
216 B
TOML
[package]
|
|
name = "wire_format_derive"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[dependencies]
|
|
syn = "=0.12"
|
|
quote = "=0.4"
|
|
proc-macro2 = "=0.2"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
path = "wire_format_derive.rs"
|