]> git.proxmox.com Git - pmg-rs.git/blob - Cargo.toml
use hex crate instead of proxmox::tools::digest_to_hex
[pmg-rs.git] / Cargo.toml
1 [package]
2 name = "pmg-rs"
3 version = "0.2.0"
4 authors = [
5 "Proxmox Support Team <support@proxmox.com>",
6 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
7 "Fabian Ebner <f.ebner@proxmox.com>",
8 ]
9 edition = "2018"
10 license = "AGPL-3"
11 description = "PMG parts which have been ported to rust"
12 exclude = [
13 "build",
14 "debian",
15 "PMG",
16 ]
17
18 [lib]
19 crate-type = [ "cdylib" ]
20
21 [dependencies]
22 anyhow = "1.0"
23 hex = "0.4"
24 openssl = "0.10.32"
25 serde = "1.0"
26 serde_bytes = "0.11.3"
27 serde_json = "1.0"
28
29 perlmod = { version = "0.5.2", features = [ "exporter" ] }
30 #perlmod = { path = "../perlmod/perlmod", features = [ "exporter" ] }
31
32 proxmox = "0.14"
33
34 proxmox-acme-rs = { version = "0.2.2", features = ["client"] }
35 #proxmox-acme-rs = { path = "../proxmox-acme-rs", features = ["client"] }
36
37 proxmox-apt = "0.8.0"