From 2ecd975608524763952f1d6934673f2ef8e40fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 17 Dec 2019 15:01:07 +0100 Subject: [PATCH] proxmox-api: update lazy_static to 1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit which is available in Debian unstable. Signed-off-by: Fabian Grünbichler --- proxmox-api/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox-api/Cargo.toml b/proxmox-api/Cargo.toml index d22e8635..eb33194e 100644 --- a/proxmox-api/Cargo.toml +++ b/proxmox-api/Cargo.toml @@ -10,7 +10,7 @@ failure = "0.1" futures = "0.3" http = "0.2" proxmox-tools = { version = "0.1", path = "../proxmox-tools" } -regex = "1.0" +regex = "1.2" rustyline = "5.0.4" serde = "1.0" serde_derive = "1.0" @@ -22,7 +22,7 @@ tokio = { version = "0.2", features = [], optional = true } hyper = { version = "0.13", optional = true } [dev-dependencies] -lazy_static = "1.3" +lazy_static = "1.4" [features] default = [ "router", "cli" ]