mirror of
				https://git.proxmox.com/git/perlmod
				synced 2025-11-03 23:53:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			594 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			594 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "perlmod-macro"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
 | 
						|
edition = "2018"
 | 
						|
license = "Apache-2.0 OR MIT"
 | 
						|
categories = [ "API bindings" ]
 | 
						|
keywords = [ "ffi", "perl" ]
 | 
						|
description = "perl package macros to create perl package bindings from rust at compile time"
 | 
						|
 | 
						|
exclude = [ "debian" ]
 | 
						|
 | 
						|
[badges]
 | 
						|
maintenance = { status = "experimental" }
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
[dependencies]
 | 
						|
anyhow = "1.0"
 | 
						|
proc-macro2 = "1.0"
 | 
						|
quote = "1.0"
 | 
						|
syn = { version = "1.0", features = [ "full" ] }
 | 
						|
toml = "0.5.5"
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
perlmod = { path = "../perlmod" }
 |