]> git.proxmox.com Git - proxmox.git/blobdiff - proxmox-metrics/Cargo.toml
sys: use anyhow Error type for create_dir, and improve error messages
[proxmox.git] / proxmox-metrics / Cargo.toml
index 2a559a998bd03a143fd6c4bf86a867c62035aa8c..64fd39386e08aaea062820d654f415f0bbae98c4 100644 (file)
@@ -1,22 +1,24 @@
 [package]
 name = "proxmox-metrics"
-version = "0.2.1"
-authors = ["Proxmox Support Team <support@proxmox.com>"]
-edition = "2018"
-license = "AGPL-3"
+version = "0.3.1"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
 description = "Metrics Server export utilitites"
 
-exclude = [ "debian" ]
+exclude.workspace = true
 
 [dependencies]
-anyhow = "1.0"
-futures = "0.3"
-http = "0.2"
-hyper = "0.14"
-openssl = "0.10"
-serde = "1.0"
-serde_json = "1.0"
-tokio = { version = "1.0", features = [ "net", "sync" ] }
+anyhow.workspace = true
+futures.workspace = true
+http.workspace = true
+hyper.workspace = true
+openssl.workspace = true
+serde.workspace = true
+serde_json.workspace = true
+tokio = { workspace = true, features = [ "net", "sync" ] }
+form_urlencoded.workspace = true
 
-proxmox-async = { path = "../proxmox-async", features = [], version = "0.4" }
-proxmox-http = { path = "../proxmox-http", features = [ "client" ], version = "0.7" }
+proxmox-async.workspace = true
+proxmox-http = { workspace = true, features = [ "client" ] }