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