 2b74dd9180
			
		
	
	
		2b74dd9180
		
	
	
	
	
		
			
			This commit adds a helper crate library, qemu-api-macros for derive (and other procedural) macros to be used along qemu-api. It needs to be a separate library because in Rust, procedural macros, or macros that can generate arbitrary code, need to be special separate compilation units. Only one macro is introduced in this patch, #[derive(Object)]. It generates a constructor to register a QOM TypeInfo on init and it must be used on types that implement qemu_api::definitions::ObjectImpl trait. Reviewed-by: Junjie Mao <junjie.mao@hotmail.com> Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Link: https://lore.kernel.org/r/dd645642406a6dc2060c6f3f17db2bc77ed67b59.1727961605.git.manos.pitsidianakis@linaro.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| # This file is automatically @generated by Cargo.
 | |
| # It is not intended for manual editing.
 | |
| version = 3
 | |
| 
 | |
| [[package]]
 | |
| name = "proc-macro2"
 | |
| version = "1.0.86"
 | |
| source = "registry+https://github.com/rust-lang/crates.io-index"
 | |
| checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
 | |
| dependencies = [
 | |
|  "unicode-ident",
 | |
| ]
 | |
| 
 | |
| [[package]]
 | |
| name = "qemu_api_macros"
 | |
| version = "0.1.0"
 | |
| dependencies = [
 | |
|  "proc-macro2",
 | |
|  "quote",
 | |
|  "syn",
 | |
| ]
 | |
| 
 | |
| [[package]]
 | |
| name = "quote"
 | |
| version = "1.0.36"
 | |
| source = "registry+https://github.com/rust-lang/crates.io-index"
 | |
| checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
 | |
| dependencies = [
 | |
|  "proc-macro2",
 | |
| ]
 | |
| 
 | |
| [[package]]
 | |
| name = "syn"
 | |
| version = "2.0.72"
 | |
| source = "registry+https://github.com/rust-lang/crates.io-index"
 | |
| checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
 | |
| dependencies = [
 | |
|  "proc-macro2",
 | |
|  "quote",
 | |
|  "unicode-ident",
 | |
| ]
 | |
| 
 | |
| [[package]]
 | |
| name = "unicode-ident"
 | |
| version = "1.0.12"
 | |
| source = "registry+https://github.com/rust-lang/crates.io-index"
 | |
| checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
 |