]> git.proxmox.com Git - perlmod.git/blob - perlmod-macro/Cargo.toml
0da3f7c6a1fc8aa2eea5c6ce087ff3e2fed7e749
[perlmod.git] / perlmod-macro / Cargo.toml
1 [package]
2 name = "perlmod-macro"
3 version = "0.7.0"
4 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
5 edition = "2021"
6 build = "build.rs"
7 license = "Apache-2.0 OR MIT"
8 categories = [ "API bindings" ]
9 keywords = [ "ffi", "perl" ]
10 description = "perl package macros to create perl package bindings from rust at compile time"
11
12 exclude = [ "debian" ]
13
14 [badges]
15 maintenance = { status = "experimental" }
16
17 [lib]
18 proc-macro = true
19
20 [dependencies]
21 proc-macro2 = "1.0"
22 quote = "1.0"
23 syn = { version = "1.0", features = [ "full" ] }
24
25 [dev-dependencies]
26 perlmod = { path = "../perlmod" }