From 0b52c0321970c76e2d90208b6df3bd22a1c60bf9 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Thu, 11 Jan 2024 16:16:11 +0100 Subject: [PATCH] fix: Specify version & git locations for zenoh deps --- Cargo.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16798cb2..b7b8f7ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,8 +52,6 @@ pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py37"] } serde_json = "1.0.94" uhlc = "0.6.0" validated_struct = "2.1.0" -zenoh = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master", features = [ - "unstable", -], default-features = false } -zenoh-buffers = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" } -zenoh-core = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" } +zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master", features = ["unstable"], default-features = false } +zenoh-buffers = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" } +zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" }