mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00

Some items of Cargo.toml (readme, homepage, repository) are only present because of clippy::cargo warnings being enabled in rust/hw/char/pl011/src/lib.rs. But these items are not particularly useful and would be all the same for all Cargo.toml files in the QEMU workspace. Clean them up. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
22 lines
433 B
TOML
22 lines
433 B
TOML
[package]
|
|
name = "qemu_api_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
|
|
license = "GPL-2.0-or-later"
|
|
description = "Rust bindings for QEMU - Utility macros"
|
|
resolver = "2"
|
|
publish = false
|
|
keywords = []
|
|
categories = []
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["extra-traits"] }
|
|
|
|
[lints]
|
|
workspace = true
|