Skip to content

Commit

Permalink
Merge pull request #3 from BackMountainDevil/main
Browse files Browse the repository at this point in the history
fix: compile err because wrong path of remoc
  • Loading branch information
robinhundt committed Dec 12, 2023
2 parents dc441c4 + 9e01579 commit d87aefe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/gmw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/mpc-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/zappot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d87aefe

Please sign in to comment.