The attrs crate is a simple combinator-based for Rust attributes. It will be used instead of a handwritten parser. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
25 lines
504 B
TOML
25 lines
504 B
TOML
[package]
|
|
name = "qemu_macros"
|
|
version = "0.1.0"
|
|
authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
|
|
description = "Rust bindings for QEMU - Utility macros"
|
|
resolver = "2"
|
|
publish = false
|
|
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
attrs = "0.2.9"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["extra-traits"] }
|
|
|
|
[lints]
|
|
workspace = true
|