]> git.proxmox.com Git - proxmox-acme-rs.git/blob - Cargo.toml
mark Error as must_use
[proxmox-acme-rs.git] / Cargo.toml
1 [package]
2 name = "proxmox-acme-rs"
3 version = "0.2.1"
4 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
5 edition = "2018"
6 license = "AGPL-3"
7 description = "ACME client library"
8 exclude = [
9 "build",
10 "debian",
11 ]
12
13 [dependencies]
14 base64 = "0.12.0"
15 serde = { version = "1.0", features = ["derive"] }
16 serde_json = "1.0"
17 openssl = "0.10.29"
18
19 curl = { version = "0.4.33", optional = true }
20
21 [features]
22 default = []
23 client = ["curl"]
24
25 [dev-dependencies]
26 anyhow = "1.0"