]> git.proxmox.com Git - perlmod.git/blame - perlmod/Cargo.toml
add README.md
[perlmod.git] / perlmod / Cargo.toml
CommitLineData
f7cc8c37
WB
1[package]
2name = "perlmod"
c9d79aae 3version = "0.5.3"
f7cc8c37
WB
4authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
5edition = "2018"
6build = "build.rs"
e2324852
WB
7license = "Apache-2.0 OR MIT"
8categories = [ "API bindings" ]
9keywords = [ "ffi", "perl" ]
2a28e41e 10description = "ffi & serde code for limited interaction with perl code"
4fe421d4 11
46d6d8fa
WB
12exclude = [ "debian" ]
13
40e6b9d9 14[badges]
e2324852 15maintenance = { status = "experimental" }
f7cc8c37
WB
16
17[dependencies]
18bitflags = "1.2.1"
f7cc8c37 19libc = "0.2"
ab3923dc 20perlmod-macro = { path = "../perlmod-macro", optional = true, version = "0.3.2" }
2290f60a 21serde = { version = "1.0", features = ["derive"] }
87c10237 22thiserror = "1.0"
f7cc8c37
WB
23
24[features]
25default = ["exporter"]
26exporter = ["perlmod-macro"]
27
28[build-dependencies]
29cc = "1.0.46"