mirror of
git://git.proxmox.com/git/perlmod.git
synced 2025-03-13 04:58:16 +03:00
28 lines
594 B
TOML
28 lines
594 B
TOML
[package]
|
|
name = "perlmod-macro"
|
|
version = "0.3.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" }
|