]> git.proxmox.com Git - proxmox.git/blob - proxmox-acme/Cargo.toml
move to proxmox-acme
[proxmox.git] / proxmox-acme / Cargo.toml
1 [package]
2 name = "proxmox-acme-rs"
3 version = "0.4.0"
4 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
5 edition = "2021"
6 license = "AGPL-3"
7 description = "ACME client library"
8 exclude = [
9 "build",
10 "debian",
11 ]
12
13 [dependencies]
14 base64 = "0.13.0"
15 serde = { version = "1.0", features = ["derive"] }
16 serde_json = "1.0"
17 openssl = "0.10.29"
18
19 # For the client
20 native-tls = { version = "0.2", optional = true }
21
22 [dependencies.ureq]
23 optional = true
24 version = "2.4"
25 default-features = false
26 features = [ "native-tls", "gzip" ]
27
28 [features]
29 default = []
30 client = ["ureq", "native-tls"]
31
32 [dev-dependencies]
33 anyhow = "1.0"