From 717c2f232f067943b68d82c92a24ecc5eac02d72 Mon Sep 17 00:00:00 2001 From: Andrew Whitehead Date: Thu, 5 Oct 2023 11:17:23 -0700 Subject: [PATCH] update zmq and time dependencies Signed-off-by: Andrew Whitehead --- libindy_vdr/Cargo.toml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/libindy_vdr/Cargo.toml b/libindy_vdr/Cargo.toml index 3472dfd8..fdcd3371 100644 --- a/libindy_vdr/Cargo.toml +++ b/libindy_vdr/Cargo.toml @@ -21,15 +21,12 @@ crate-type = ["staticlib", "rlib", "cdylib"] [features] ffi = ["ffi-support", "logger"] logger = ["env_logger", "log"] -zmq_vendored = ["zmq/vendored"] +zmq_vendored = [] # now automatic local_nodes_pool = [] rich_schema = ["indy-data-types/rich_schema"] -default = ["ffi", "log", "zmq_vendored"] +default = ["ffi", "log"] [dependencies] -# This is added so we can lock the version that zmq uses -# 0.1.49 is broken for ios targets -cmake = { version = "=0.1.48", optional = true } base64 = "0.21" bs58 = "0.5" etcommon-rlp = "0.2.4" @@ -57,9 +54,9 @@ serde_json = "1.0" sha2 = "0.10" sha3 = "0.10" thiserror = "1.0" -time = { version = "=0.3.20", features = ["parsing"] } +time = { version = "0.3", features = ["parsing"] } url = "2.2.2" -zmq = "0.9" +zmq = "0.10" [dev-dependencies] rstest = "0.18"