From: Wolfgang Bumiller Date: Mon, 4 Dec 2023 10:45:00 +0000 (+0100) Subject: add proxmox-acme to workspace X-Git-Url: https://git.proxmox.com/?p=proxmox.git;a=commitdiff_plain;h=e7037250499deed555352f7161659d29d7d59efa add proxmox-acme to workspace Signed-off-by: Wolfgang Bumiller --- diff --git a/Cargo.toml b/Cargo.toml index ceae47ef..a394e7dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = [ + "proxmox-acme", "proxmox-api-macro", "proxmox-apt", "proxmox-async", diff --git a/proxmox-acme/Cargo.toml b/proxmox-acme/Cargo.toml index c735844a..34c409a3 100644 --- a/proxmox-acme/Cargo.toml +++ b/proxmox-acme/Cargo.toml @@ -1,23 +1,23 @@ [package] name = "proxmox-acme" version = "0.4.0" -authors = ["Wolfgang Bumiller "] -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