perlmod/perlmod-macro/Cargo.toml
Wolfgang Bumiller 1624184105 perlmod, macro: add add perlmod=multiplicity as expected lint
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2024-07-30 15:36:42 +02:00

31 lines
687 B
TOML

[package]
name = "perlmod-macro"
version = "0.8.4"
build = "build.rs"
categories = [ "API bindings" ]
keywords = [ "ffi", "perl" ]
description = "perl package macros to create perl package bindings from rust at compile time"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
exclude = [ "debian" ]
[badges]
maintenance = { status = "experimental" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [ 'cfg(perlmod, values("multiplicity"))' ] }
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2", features = [ "full" ] }
[dev-dependencies]
perlmod = { path = "../perlmod" }