Skip to content

Commit d87aefe

Browse files
authored
Merge pull request #3 from BackMountainDevil/main
fix: compile err because wrong path of remoc
2 parents dc441c4 + 9e01579 commit d87aefe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/gmw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ rangemap = "1.0.3"
4141
once_cell = "1.13.1"
4242
gmw-macros = {path = "../gmw-macros"}
4343
mpc-channel = {path = "../mpc-channel"}
44-
remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
44+
remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
4545
zappot = {path = "../zappot", features = ["silent_ot"]}
4646
typemap = "0.3.3"
4747
indexmap = "1.9.1"

crates/mpc-channel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tokio = { version = "1.21.1", features = ["macros", "net"]}
1717
tokio-serde = { version = "0.8.0", features = ["bincode"]}
1818
tokio-util = { version = "0.7.3", features = ["codec"]}
1919
tracing = "0.1.36"
20-
remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
20+
remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
2121
mpc-channel-macros = {path = "../mpc-channel-macros"}
2222

2323
[dev-dependencies]

crates/zappot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tokio-util = { version = "0.7.3", features = ["codec"]}
4040
ndarray = { version = "0.15.4", features = ["rayon"]}
4141
thiserror = "1.0.31"
4242
tracing = "0.1.35"
43-
remoc = { path = "../../../remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
43+
remoc = { path = "../../libs/remoc/remoc", default-features = false, features = ["rch", "codec-bincode"]}
4444
libote-sys = { path = "../../libs/libote-sys", optional = true }
4545

4646
[dev-dependencies]

0 commit comments

Comments
 (0)