switch proxmox dependencies to workspace

besides harmonizing versions, the only global change is that the tokio-io
feature of pxar is now implied since its default anyway, instead of being
spelled out.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2022-12-09 11:37:02 +01:00
parent 219af02796
commit d75e305162

View File

@ -7,7 +7,7 @@ license.workspace = true
description = "Simple RRD database implementation." description = "Simple RRD database implementation."
[dev-dependencies] [dev-dependencies]
proxmox-router = "1.2.4" proxmox-router = { workspace = true, features = ["cli", "server"] }
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
@ -21,6 +21,6 @@ serde_json = "1.0"
serde_cbor = "0.11.1" serde_cbor = "0.11.1"
#proxmox = { version = "0.15.3" } #proxmox = { version = "0.15.3" }
proxmox-time = "1" proxmox-time.workspace = true
proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] } proxmox-schema = { workspace = true, features = [ "api-macro" ] }
proxmox-sys = "0.4.1" proxmox-sys.workspace = true