From a70b2aeb48a75fba45aa2457471966ad1bc70691 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 12 Jun 2019 13:16:36 +0200 Subject: [PATCH] use ssh+git for the proxmox repository This works for me, note the `ssh://` protocol, and using `/` to separate the path instead of `:`. Signed-off-by: Wolfgang Bumiller --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eba3de4e..94c66966 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ name = "proxmox_backup" path = "src/lib.rs" [dependencies] -proxmox = { path = "../proxmox/proxmox" } +proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" } proxmox-protocol = { path = "proxmox-protocol" } log = "0.4" syslog = "4.0"