From 9e01579ebe1efd36e03574e15eec5dc6e1c6d93a Mon Sep 17 00:00:00 2001 From: mifen <191615342@qq.com> Date: Thu, 23 Nov 2023 19:11:26 +0800 Subject: [PATCH] fix: compile err because wrong path of remoc --- crates/gmw/Cargo.toml | 2 +- crates/mpc-channel/Cargo.toml | 2 +- crates/zappot/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/gmw/Cargo.toml b/crates/gmw/Cargo.toml index 4baa223..50251a8 100644 --- a/crates/gmw/Cargo.toml +++ b/crates/gmw/Cargo.toml @@ -41,7 +41,7 @@ rangemap = "1.0.3" once_cell = "1.13.1" gmw-macros = {path = "../gmw-macros"} mpc-channel = {path = "../mpc-channel"} -remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} +remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} zappot = {path = "../zappot", features = ["silent_ot"]} typemap = "0.3.3" indexmap = "1.9.1" diff --git a/crates/mpc-channel/Cargo.toml b/crates/mpc-channel/Cargo.toml index 5a712c4..3a3d230 100644 --- a/crates/mpc-channel/Cargo.toml +++ b/crates/mpc-channel/Cargo.toml @@ -17,7 +17,7 @@ tokio = { version = "1.21.1", features = ["macros", "net"]} tokio-serde = { version = "0.8.0", features = ["bincode"]} tokio-util = { version = "0.7.3", features = ["codec"]} tracing = "0.1.36" -remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} +remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} mpc-channel-macros = {path = "../mpc-channel-macros"} [dev-dependencies] diff --git a/crates/zappot/Cargo.toml b/crates/zappot/Cargo.toml index 0754288..5c22727 100644 --- a/crates/zappot/Cargo.toml +++ b/crates/zappot/Cargo.toml @@ -40,7 +40,7 @@ tokio-util = { version = "0.7.3", features = ["codec"]} ndarray = { version = "0.15.4", features = ["rayon"]} thiserror = "1.0.31" tracing = "0.1.35" -remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} +remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]} libote-sys = { path = "../../libs/libote-sys", optional = true } [dev-dependencies]