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