From c26f4ef3858a18c3d5cb0f94cd131b657429b9d7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 15 Jul 2021 09:54:47 +0200 Subject: [PATCH] buildsys: Prepare new way for path dependencies Signed-off-by: Wolfgang Bumiller (cherry picked from commit 9f5b57a348add161938d8c204c3e1c6562feaf06) Signed-off-by: Thomas Lamprecht --- Cargo.toml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 52fd79e8..e00a2fe3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,16 +75,18 @@ crossbeam-channel = "0.5" pathpatterns = "0.1.2" pxar = { version = "0.10.1", features = [ "tokio-io" ] } -#pxar = { path = "../pxar", features = [ "tokio-io" ] } -proxmox = { version = "0.11.5", features = [ "sortable-macro", "api-macro" ] } -#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] } -#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] } +proxmox = { version = "0.11.5", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] } proxmox-acme-rs = "0.2.1" proxmox-fuse = "0.1.1" proxmox-http = { version = "0.2.1", features = [ "client", "http-helpers", "websocket" ] } -#proxmox-http = { version = "0.2.0", path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] } -proxmox-openid = "0.6.0" + +# Local path overrides +# NOTE: You must run `cargo update` after changing this for it to take effect! +[patch.crates-io] +#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] } +#proxmox-http = { path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] } +#pxar = { path = "../pxar", features = [ "tokio-io" ] } [features] default = []