]> git.proxmox.com Git - proxmox.git/commitdiff
add proxmox-acme to workspace
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 4 Dec 2023 10:45:00 +0000 (11:45 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 4 Dec 2023 10:45:00 +0000 (11:45 +0100)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Cargo.toml
proxmox-acme/Cargo.toml

index ceae47ef803ca56c4b3356862a6a9ada7630f49d..a394e7dcab7646f1bdb5f079809dac52cc78f760 100644 (file)
@@ -1,5 +1,6 @@
 [workspace]
 members = [
+    "proxmox-acme",
     "proxmox-api-macro",
     "proxmox-apt",
     "proxmox-async",
index c735844a2d8c97a129c2942b0d11f1bbfef81ff0..34c409a32a27196fc416530636c8fd58976f710a 100644 (file)
@@ -1,23 +1,23 @@
 [package]
 name = "proxmox-acme"
 version = "0.4.0"
-authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
-edition = "2021"
-license = "AGPL-3"
 description = "ACME client library"
-exclude = [
-    "build",
-    "debian",
-]
+authors.workspace = true
+license.workspace = true
+edition.workspace = true
+homepage.workspace = true
+repository.workspace = true
+
+exclude = [ "debian" ]
 
 [dependencies]
-base64 = "0.13.0"
-serde = { version = "1.0", features = ["derive"] }
-serde_json = "1.0"
-openssl = "0.10.29"
+base64.workspace = true
+serde = { workspace = true, features = ["derive"] }
+serde_json.workspace = true
+openssl.workspace = true
 
 # For the client
-native-tls = { version = "0.2", optional = true }
+native-tls = { workspace = true, optional = true }
 
 [dependencies.ureq]
 optional = true
@@ -30,4 +30,4 @@ default = []
 client = ["ureq", "native-tls"]
 
 [dev-dependencies]
-anyhow = "1.0"
+anyhow.workspace = true